5af5d12f3e
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
9 lines
212 B
Makefile
9 lines
212 B
Makefile
# Copyright (c) 2012 William Hubbs <w.d.hubbs@gmail.com>
|
|
# Released under the 2-clause BSD license.
|
|
|
|
ifeq (${MKPREFIX},yes)
|
|
CPPFLAGS+= -DPREFIX
|
|
PKG_PREFIX?= $(PREFIX)/usr
|
|
SED_EXTRA= -e '/_PATH=.*usr.bin/d'
|
|
endif
|