mirror of
https://git.yoctoproject.org/poky
synced 2026-05-07 16:59:22 +00:00
STAGING_BINDIR: No longer need to rename -native binconfig binaries, set STAGING_BINDIR correctly
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1221 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -20,11 +20,6 @@ def get_binconfig_mangle(d):
|
||||
s += " -e 's:OEEXECPREFIX:${STAGING_LIBDIR}/..:'"
|
||||
return s
|
||||
|
||||
# Native package configurations go in ${BINDIR}/<name>-config-native to prevent a collision with cross packages
|
||||
def is_native(d):
|
||||
import bb.data
|
||||
return ["","-native"][bb.data.inherits_class('native', d)]
|
||||
|
||||
BINCONFIG_GLOB ?= "*-config"
|
||||
|
||||
do_install_append() {
|
||||
@@ -52,9 +47,9 @@ do_install_append() {
|
||||
|
||||
do_stage_append() {
|
||||
for config in `find ${S} -name '${BINCONFIG_GLOB}'`; do
|
||||
configname=`basename $config`${@is_native(d)}
|
||||
install -d ${STAGING_BINDIR}
|
||||
cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR}/$configname
|
||||
chmod u+x ${STAGING_BINDIR}/$configname
|
||||
configname=`basename $config`
|
||||
install -d ${STAGING_BINDIR_CROSS}
|
||||
cat $config | sed ${@get_binconfig_mangle(d)} > ${STAGING_BINDIR_CROSS}/$configname
|
||||
chmod u+x ${STAGING_BINDIR_CROSS}/$configname
|
||||
done
|
||||
}
|
||||
|
||||
@@ -163,7 +163,7 @@ S = "${WORKDIR}/${P}"
|
||||
B = "${S}"
|
||||
|
||||
STAGING_DIR = "${TMPDIR}/staging"
|
||||
STAGING_BINDIR = "${STAGING_DIR}/${BUILD_SYS}/bin/${HOST_SYS}"
|
||||
STAGING_BINDIR = "${STAGING_DIR}/${HOST_SYS}/bin"
|
||||
STAGING_BINDIR_CROSS = "${STAGING_DIR}/${BUILD_SYS}/bin/${HOST_SYS}"
|
||||
STAGING_BINDIR_NATIVE = "${STAGING_DIR}/${BUILD_SYS}/bin"
|
||||
STAGING_LIBDIR = "${STAGING_DIR}/${HOST_SYS}/lib"
|
||||
|
||||
@@ -7,7 +7,7 @@ FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/fontconfig-${PV}"
|
||||
SRC_URI += " file://stop-fc-cache.patch;patch=1"
|
||||
|
||||
EXTRA_OEMAKE = ""
|
||||
EXTRA_OECONF += "--with-freetype-config=${STAGING_BINDIR}/freetype-config-native"
|
||||
EXTRA_OECONF += "--with-freetype-config=${STAGING_BINDIR}/freetype-config"
|
||||
|
||||
do_stage () {
|
||||
oe_runmake install
|
||||
|
||||
Reference in New Issue
Block a user