diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-23 12:29:21 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-23 12:29:21 +0000 |
commit | 5de06b564a949d0d9ec254817feacf9ad18d098c (patch) | |
tree | b24bc7e04e12720c257d88419bdf2fac9475981f /meta/classes/sstate.bbclass | |
parent | 8903327ff483cd3dbde8cf692be2092462265188 (diff) | |
download | openembedded-core-contrib-5de06b564a949d0d9ec254817feacf9ad18d098c.tar.gz |
Revert "bitbake.conf/sstate.bbclass: Change PATH when installing sstate files to avoid issues"
Reluctantly revert this since it breaks the tar-native workaround we have
for old versions of tar :(
This reverts commit 01218e29f963120c77885964702198d9bce77e11.
Diffstat (limited to 'meta/classes/sstate.bbclass')
-rw-r--r-- | meta/classes/sstate.bbclass | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/meta/classes/sstate.bbclass b/meta/classes/sstate.bbclass index 20e66e27421..a8c98e5c7fd 100644 --- a/meta/classes/sstate.bbclass +++ b/meta/classes/sstate.bbclass @@ -153,12 +153,6 @@ def sstate_installpkg(ss, d): bb.mkdirhier(dir) oe.path.remove(dir) - # We're adding binaries into the sysroots, we don't want to execute them - # whilst they're half installed or being installed so we need to - # remove the sysroots from PATH - savedpath = d.getVar("PATH") - d.setVar("PATH", "${ORIGPATH}") - sstateinst = d.expand("${WORKDIR}/sstate-install-%s/" % ss['name']) sstatepkg = d.getVar('SSTATE_PKG', True) + '_' + ss['name'] + ".tgz" @@ -196,8 +190,6 @@ def sstate_installpkg(ss, d): # conflict with another writer os.remove(fixmefn) - d.setVar("PATH", savedpath) - for state in ss['dirs']: prepdir(state[1]) os.rename(sstateinst + state[0], state[1]) |