diff options
author | Joshua Lock <josh@linux.intel.com> | 2010-06-25 13:52:51 +0100 |
---|---|---|
committer | Joshua Lock <josh@linux.intel.com> | 2010-06-25 14:54:51 +0100 |
commit | 43f0d63237604e85e1af9d289a9aaeac96b86362 (patch) | |
tree | 3f280dd046b25e52133052af77a9128b77ce3b63 /bitbake | |
parent | 4f14e0a240f5d6e4eeecdb4bbbae7205e2070cab (diff) | |
download | openembedded-core-43f0d63237604e85e1af9d289a9aaeac96b86362.tar.gz openembedded-core-43f0d63237604e85e1af9d289a9aaeac96b86362.tar.bz2 openembedded-core-43f0d63237604e85e1af9d289a9aaeac96b86362.zip |
bitbake: allow fakeroot functionality to be provided by an alternative program
If the variable FAKEROOT is set its value will be used, otherwise we default
to fakeroot.
Signed-off-by: Joshua Lock <josh@linux.intel.com>
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 1c713bf829..43dbfc1363 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -253,7 +253,7 @@ def exec_func_shell(func, d, runfile, logfile, flags): # execute function if flags['fakeroot']: - maybe_fakeroot = "PATH=\"%s\" fakeroot " % bb.data.getVar("PATH", d, 1) + maybe_fakeroot = "PATH=\"%s\" %s " % (bb.data.getVar("PATH", d, 1), bb.data.getVar("FAKEROOT", d, 1) or "fakeroot") else: maybe_fakeroot = '' lang_environment = "LC_ALL=C " |