From: Richard Purdie Date: Fri, 7 Nov 2008 14:28:15 +0000 (+0000) Subject: qmake2-cross: Fix the driectory the qmake binaries are installed into X-Git-Tag: 2011-1~7813 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6d7f3cbcb7167a472bc7a982b600bdfb58f8057f;p=openembedded-core.git qmake2-cross: Fix the driectory the qmake binaries are installed into --- diff --git a/meta/packages/qmake/qmake2-cross_2.10a.bb b/meta/packages/qmake/qmake2-cross_2.10a.bb index 99fe90722a..5f1c020bce 100644 --- a/meta/packages/qmake/qmake2-cross_2.10a.bb +++ b/meta/packages/qmake/qmake2-cross_2.10a.bb @@ -15,6 +15,7 @@ S = "${WORKDIR}/${QTVER}" # we need the real target system here CROSS_SYS := "${TARGET_SYS}" +CROSS_BINDIR := "${STAGING_BINDIR_CROSS}" inherit autotools cross export QTDIR = "${S}" @@ -54,8 +55,9 @@ do_compile() { } do_stage() { - install -m 0755 bin/qmake ${STAGING_BINDIR}/qmake2 - install -m 0755 bin/qmake ${STAGING_BINDIR}/qmake-qt4 + install -d ${CROSS_BINDIR}/ + install -m 0755 bin/qmake ${CROSS_BINDIR}/qmake2 + install -m 0755 bin/qmake ${CROSS_BINDIR}/qmake-qt4 install -d ${STAGING_DIR}/${CROSS_SYS}/qt4/ cp -PfR mkspecs ${STAGING_DIR}/${CROSS_SYS}/qt4/ install -d ${STAGING_DIR}/${HOST_SYS}/qt4/