aboutsummaryrefslogtreecommitdiff
path: root/mk/os-prefix.mk
diff options
context:
space:
mode:
authorBenda Xu <heroxbd@gentoo.org>2016-06-13 17:43:36 -0500
committerWilliam Hubbs <w.d.hubbs@gmail.com>2016-06-13 17:43:36 -0500
commit5af5d12f3e56f9f2ff232d124d27c856fd66f551 (patch)
tree170bb1c68b7b4311d1695b19ca0ceda42d6b6daa /mk/os-prefix.mk
parentb2c92b88cc6ce6d81444667efbc6d44542db1788 (diff)
Fix PATH for Prefix.
1. remove default /bin:/sbin:/usr/bin:/usr/sbin 2. PKG_PREFIX should be defaulted to $(PREFIX)/usr 3. LOCAL_PREFIX should be defaulted to $(PREFIX)/usr/local X-Gentoo-Bug:583634 X-Gentoo-Bug-URL:https://bugs.gentoo.org/show_bug.cgi?id=583634
Diffstat (limited to 'mk/os-prefix.mk')
-rw-r--r--mk/os-prefix.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/mk/os-prefix.mk b/mk/os-prefix.mk
index c546a862..af08c99e 100644
--- a/mk/os-prefix.mk
+++ b/mk/os-prefix.mk
@@ -3,4 +3,6 @@
ifeq (${MKPREFIX},yes)
CPPFLAGS+= -DPREFIX
+PKG_PREFIX?= $(PREFIX)/usr
+SED_EXTRA= -e '/_PATH=.*usr.bin/d'
endif