From f41a2b1387fdec56a01a07c274a63c9d1d6ed95e Mon Sep 17 00:00:00 2001 From: keramida Date: Thu, 10 Feb 2011 19:13:54 +0000 Subject: 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 Approved by: ru MFC after: 1 month --- share/mk/bsd.own.mk | 3 +++ 1 file changed, 3 insertions(+) (limited to 'share/mk') diff --git a/share/mk/bsd.own.mk b/share/mk/bsd.own.mk index 7b5c4c4..2c6d689 100644 --- a/share/mk/bsd.own.mk +++ b/share/mk/bsd.own.mk @@ -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} -- cgit v1.1