mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-14 05:49:57 +00:00
efd3696e70
getVar() now defaults to expanding by default, thus remove the True option from getVar() calls with a regex search and replace. Search made with the following regex: getVar ?\(( ?[^,()]*), True\) Signed-off-by: Joshua Lock <joshua.g.lock@intel.com>
16 lines
366 B
BlitzBasic
16 lines
366 B
BlitzBasic
require fakeroot_${PV}.bb
|
|
|
|
S = "${WORKDIR}/fakeroot-${PV}"
|
|
|
|
inherit native
|
|
|
|
EXTRA_OECONF = "--program-prefix="
|
|
|
|
# Compatability for the rare systems not using or having SYSV
|
|
python () {
|
|
if d.getVar('HOST_NONSYSV') and d.getVar('HOST_NONSYSV') != '0':
|
|
d.setVar('EXTRA_OECONF', ' --with-ipc=tcp --program-prefix= ')
|
|
}
|
|
|
|
RDEPENDS_${PN} = "util-linux-native"
|