svn commit: r218525 - head/share/mk

Giorgos Keramidas keramida at FreeBSD.org
Thu Feb 10 19:13:54 UTC 2011


Author: keramida (doc committer)
Date: Thu Feb 10 19:13:54 2011
New Revision: 218525
URL: http://svn.freebsd.org/changeset/base/218525

Log:
  Add LIBEXECDIR to the bsd.own.mk vars, pointing to /usr/libexec by default
  
  Some of the patches we are preparing for porting ATF from NetBSD
  refer to '/usr/libexec' several times.  Instead of repeating the
  path all over the place, add ${LIBEXECDIR} to match ${LIBDATADIR}
  and reduce the redundancy of the relevant makefiles.
  
  Submitted by:	Garrett Cooper <yanegomi at gmail.com>
  Approved by:	ru
  MFC after:	1 month

Modified:
  head/share/mk/bsd.own.mk

Modified: head/share/mk/bsd.own.mk
==============================================================================
--- head/share/mk/bsd.own.mk	Thu Feb 10 18:54:52 2011	(r218524)
+++ head/share/mk/bsd.own.mk	Thu Feb 10 19:13:54 2011	(r218525)
@@ -30,6 +30,8 @@
 #
 # LIBDATADIR	Base path for misc. utility data files. [/usr/libdata]
 #
+# LIBEXECDIR	Base path for system daemons and utilities. [/usr/libexec]
+#
 # LINTLIBDIR	Base path for lint libraries. [/usr/libdata/lint]
 #
 # SHLIBDIR	Base path for shared libraries. [${LIBDIR}]
@@ -129,6 +131,7 @@ KMODMODE?=	${BINMODE}
 LIBDIR?=	/usr/lib
 LIBCOMPATDIR?=	/usr/lib/compat
 LIBDATADIR?=	/usr/libdata
+LIBEXECDIR?=	/usr/libexec
 LINTLIBDIR?=	/usr/libdata/lint
 SHLIBDIR?=	${LIBDIR}
 LIBOWN?=	${BINOWN}


More information about the svn-src-all mailing list