]> code.ossystems Code Review - openembedded-core.git/commitdiff
classes/externalsrc: delete symlinks at start of do_buildclean
authorPaul Eggleton <paul.eggleton@linux.intel.com>
Mon, 18 Sep 2017 04:54:42 +0000 (16:54 +1200)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 21 Sep 2017 08:23:59 +0000 (09:23 +0100)
To help users find the work and log directories (especially within the
eSDK) we create symlinks to these from the source tree. However during
do_buildclean we call "make clean", and some project Makefiles which
delete something like "*/*/lib" which will match files underneath the
oe-workdir symlink and fail. do_buildclean is called from do_clean which
is in turn called by devtool reset by default, and thus devtool reset is
blocked. An example of a recipe where this is visible is the openssl-qat
recipe in meta-intel.

In order to fix this, delete the symlinks at the start of do_buildclean
since we shouldn't need them at that point anyway, and thus make clean
won't be able to trip over them.

Fixes [YOCTO #11036].

Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/classes/externalsrc.bbclass

index 8141f25e0419de83071cca31db4def7bf53c4b43..08e6e479010fcb1f2b5773d47d5b03fa0c825bec 100644 (file)
@@ -172,6 +172,7 @@ do_buildclean[nostamp] = "1"
 do_buildclean[doc] = "Call 'make clean' or equivalent in ${B}"
 externalsrc_do_buildclean() {
        if [ -e Makefile -o -e makefile -o -e GNUmakefile ]; then
+               rm -f ${@' '.join([x.split(':')[0] for x in (d.getVar('EXTERNALSRC_SYMLINKS') or '').split()])}
                oe_runmake clean || die "make failed"
        else
                bbnote "nothing to do - no makefile found"