1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

autotools.bbclass: Fix autostaging function to correctly handle cases where only subdirectories of files exist

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3517 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2008-01-18 12:07:20 +00:00
parent 6ddbbdfaaf
commit 1fa886288e
+1 -1
View File
@@ -170,7 +170,7 @@ autotools_stage_all() {
mkdir -p ${STAGE_TEMP}
oe_runmake DESTDIR="${STAGE_TEMP}" install
if [ -d ${STAGE_TEMP}/${includedir} ]; then
cp -fpPR ${STAGE_TEMP}/${includedir}/* ${STAGING_INCDIR}
cp -fpPR ${STAGE_TEMP}/${includedir}/ ${STAGING_INCDIR}
fi
if [ -d ${STAGE_TEMP}/${libdir} ]
then