]> code.ossystems Code Review - openembedded-core.git/commitdiff
packaged-staging: Fix packagaging of cross packages
authorJoshua Lock <josh@linux.intel.com>
Thu, 4 Mar 2010 16:53:00 +0000 (16:53 +0000)
committerJoshua Lock <josh@linux.intel.com>
Thu, 4 Mar 2010 16:53:00 +0000 (16:53 +0000)
packagedstaging_fastpath() was only copying the contents of CROSS_DIR to
PSTAGE_TMPDIR resulting in the folders contents being packaged and then
installed incorrectly at the top level of CROSS_DIR rather than in HOST_ARCH
specific sub directories.

This patch fixes that issue by copying the directory and its contents rather
than just the directory contents.

Signed-off-by: Joshua Lock <josh@linux.intel.com>
meta/classes/packaged-staging.bbclass

index 3815f6f2e652892faac5b3e66163b861b1b4f082..fca681864dea8da0e565007ea380b8c5bda80464 100644 (file)
@@ -321,7 +321,9 @@ packagedstaging_fastpath () {
                mkdir -p ${PSTAGE_TMPDIR_STAGE}/sysroots/
                mkdir -p ${PSTAGE_TMPDIR_STAGE}/cross/
                cp -fpPR ${SYSROOT_DESTDIR}/${STAGING_DIR}/* ${PSTAGE_TMPDIR_STAGE}/sysroots/ || /bin/true
-               cp -fpPR ${SYSROOT_DESTDIR}/${CROSS_DIR}/* ${PSTAGE_TMPDIR_STAGE}/cross/ || /bin/true
+                # CROSS_DIR is just the HOST_ARCH specific stuff and a sub
+                # directory of cross so copy it *and* its contents
+               cp -fpPR ${SYSROOT_DESTDIR}/${CROSS_DIR} ${PSTAGE_TMPDIR_STAGE}/cross/ || /bin/true
        fi
 }