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:31 +0100 |
commit | 118d74e28ca73135a7c0924a791a17847752e655 (patch) | |
tree | 9e90349c2c3d63c3e3129e80ef4050e7cfd39eb2 /scripts | |
parent | 4b2906d972b7fc4b465a0430a67653745cf8578c (diff) | |
download | poky-118d74e28ca73135a7c0924a791a17847752e655.tar.gz |
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
(From OE-Core rev: ce37ef05c14ba28773823d1f14f629c37c76d827)
Signed-off-by: Peter A. Bigot <pab@pabigot.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-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 | |||
90 | exit 1 | 90 | exit 1 |
91 | fi | 91 | fi |
92 | 92 | ||
93 | export PATH=${PATH}:${OECORE_NATIVE_SYSROOT}/usr/bin | ||
93 | 94 | ||
94 | $CREATEREPO "$RPM_DIR" | 95 | $CREATEREPO "$RPM_DIR" |
95 | 96 | ||