From 70153b478291a9c725f7cd9d04b87ef4e78565d1 Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Wed, 2 Mar 2016 23:44:19 +1300 Subject: [PATCH] classes/externalsrc: fix symlinking if symlink exists pointing to another path If the oe-workdir / oe-logs symlink exists and points to a different path then the symlink needs to be removed before calling os.symlink() or it'll fail. (From OE-Core rev: cb8f064e48c24dcb1a15a32cef3399f35e549bdc) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- meta/classes/externalsrc.bbclass | 1 + 1 file changed, 1 insertion(+) diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass index b608bd04e8..0ec338c660 100644 --- a/meta/classes/externalsrc.bbclass +++ b/meta/classes/externalsrc.bbclass @@ -115,6 +115,7 @@ python externalsrc_configure_prefunc() { # Link already exists, leave it if it points to the right location already if os.readlink(lnkfile) == target: continue + os.unlink(lnkfile) elif os.path.exists(lnkfile): # File/dir exists with same name as link, just leave it alone continue