diff options
author | Peter A. Bigot <pab@pabigot.com> | 2013-08-27 14:59:11 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-08-30 18:06:26 +0100 |
commit | ce37ef05c14ba28773823d1f14f629c37c76d827 (patch) | |
tree | b4e24e088b8bfa9b16cc5a1e256038011328b19b /scripts/oe-setup-rpmrepo | |
parent | 3883d2cb03fb79fa39a7d85505c79784a996f178 (diff) | |
download | openembedded-core-ce37ef05c14ba28773823d1f14f629c37c76d827.tar.gz openembedded-core-ce37ef05c14ba28773823d1f14f629c37c76d827.tar.bz2 openembedded-core-ce37ef05c14ba28773823d1f14f629c37c76d827.zip |
oe-setup-rpmrepo: add native sysroot so nativepython can be found by env
This avoids the following new behavior resulting from the create_wrapper
fixes:
llc[11]$ ../poky/scripts/oe-setup-rpmrepo
/usr/bin/env: nativepython: No such file or directory
Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'scripts/oe-setup-rpmrepo')
-rwxr-xr-x | scripts/oe-setup-rpmrepo | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/oe-setup-rpmrepo b/scripts/oe-setup-rpmrepo index ea885f6325..917b98b984 100755 --- a/scripts/oe-setup-rpmrepo +++ b/scripts/oe-setup-rpmrepo @@ -90,6 +90,7 @@ if [ ! -e "$CREATEREPO" ]; then exit 1 fi +export PATH=${PATH}:${OECORE_NATIVE_SYSROOT}/usr/bin $CREATEREPO "$RPM_DIR" |