diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-13 10:07:39 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-02-13 10:07:39 +0100 |
commit | 135d6e10a2e3dba8521be9704f841b2efcbe8671 (patch) | |
tree | b797aeec0ec1b293a1c9560af85e6da57df92e0c /mk | |
parent | a8c382023711b7662665cfbcb9167b7d6f191d9c (diff) |
use /usr/libexec to avoid conflicts of binaries in /usr/sbin
Diffstat (limited to 'mk')
-rw-r--r-- | mk/pkg-bottom.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/pkg-bottom.mk b/mk/pkg-bottom.mk index 5d6d8cc30..1f6b642a7 100644 --- a/mk/pkg-bottom.mk +++ b/mk/pkg-bottom.mk @@ -26,7 +26,7 @@ ifneq ($(filter autotool,${AUTOTOOL_STYLE}),) cd ${WRKBUILD}; \ env AUTOCONF_VERSION=2.62 \ AUTOMAKE_VERSION=1.9 \ - autoreconf -vif $(MAKE_TRACE) + autoreconf -vf $(MAKE_TRACE) endif ifneq ($(filter autoconf,${AUTOTOOL_STYLE}),) cd ${WRKBUILD}; \ @@ -79,7 +79,7 @@ else ifeq ($(strip ${CONFIG_STYLE}),) --prefix=/usr \ --datadir=/usr/share \ --mandir=/usr/share/man \ - --libexecdir=/usr/sbin \ + --libexecdir=/usr/libexec \ --localstatedir=/var \ --sysconfdir=/etc \ --disable-nls \ |