mirror of
https://git.yoctoproject.org/poky
synced 2026-02-20 08:29:42 +01:00
qmake-native: Convert to use do_install for staging
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
This commit is contained in:
@@ -35,12 +35,13 @@ do_compile() {
|
||||
:
|
||||
}
|
||||
|
||||
do_stage() {
|
||||
install -m 0755 bin/qmake ${STAGING_BINDIR}
|
||||
install -d ${QMAKE_MKSPEC_PATH}
|
||||
cp -fPR mkspecs/* ${QMAKE_MKSPEC_PATH}
|
||||
do_install() {
|
||||
install -m 0755 bin/qmake ${D}${bindir}
|
||||
install -d ${D}/qmake/
|
||||
${QMAKE_MKSPEC_PATH}
|
||||
cp -fPR mkspecs/* ${D}/qmake/
|
||||
}
|
||||
|
||||
do_install() {
|
||||
:
|
||||
sysroot_stage_all_append() {
|
||||
sysroot_stage_dir ${D}/qmake ${SYSROOT_DESTDIR}/${QMAKE_MKSPEC_PATH}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user