mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
gcc-shared-source: do not use ${S}/.. in deploy_source_date_epoch
This function is referencing '${S}/..'. It uses ${S} only as good known directory path to start traversing from, and it does not need it to exist or be populated. If ${S} does not exist yet, the function will fail because it cannot evaluate path .. from non-existing directory. Reproducer (verified in master and kirkstone): bitbake gcc -c deploy_source_date_epoch bitbake gcc -c cleansstate rm -rf build/tmp bitbake gcc -c deploy_source_date_epoch (From OE-Core rev: 42661a59cda164b2d236ffc35b4d8cf43312b677) Signed-off-by: Peter Marko <peter.marko@siemens.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
parent
37771ef5bd
commit
b553853fc4
|
@ -16,6 +16,6 @@ do_deploy_source_date_epoch () {
|
||||||
sde_file=${SDE_FILE}
|
sde_file=${SDE_FILE}
|
||||||
sde_file=${sde_file#${WORKDIR}/}
|
sde_file=${sde_file#${WORKDIR}/}
|
||||||
mkdir -p ${SDE_DEPLOYDIR} $(dirname ${SDE_FILE})
|
mkdir -p ${SDE_DEPLOYDIR} $(dirname ${SDE_FILE})
|
||||||
cp -p ${S}/../$sde_file ${SDE_DEPLOYDIR}
|
cp -p $(dirname ${S})/$sde_file ${SDE_DEPLOYDIR}
|
||||||
cp -p ${S}/../$sde_file ${SDE_FILE}
|
cp -p $(dirname ${S})/$sde_file ${SDE_FILE}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user