aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/poky-setup-rpmrepo
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/poky-setup-rpmrepo')
-rwxr-xr-xscripts/poky-setup-rpmrepo8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/poky-setup-rpmrepo b/scripts/poky-setup-rpmrepo
index 0e84ca9ee5..03372b6199 100755
--- a/scripts/poky-setup-rpmrepo
+++ b/scripts/poky-setup-rpmrepo
@@ -47,17 +47,17 @@ setup_tmpdir() {
}
setup_sysroot() {
- # Toolchain installs set up $POKY_NATIVE_SYSROOT in their
+ # Toolchain installs set up $OECORE_NATIVE_SYSROOT in their
# environment script. If that variable isn't set, we're
# either in an in-tree poky scenario or the environment
# script wasn't source'd.
- if [ -z "$POKY_NATIVE_SYSROOT" ]; then
+ if [ -z "$OECORE_NATIVE_SYSROOT" ]; then
setup_tmpdir
BUILD_ARCH=`uname -m`
BUILD_OS=`uname | tr '[A-Z]' '[a-z]'`
BUILD_SYS="$BUILD_ARCH-$BUILD_OS"
- POKY_NATIVE_SYSROOT=$TMPDIR/sysroots/$BUILD_SYS
+ OECORE_NATIVE_SYSROOT=$TMPDIR/sysroots/$BUILD_SYS
fi
}
@@ -76,7 +76,7 @@ if [ ! -d "$RPM_DIR" ]; then
exit 1
fi
-CREATEREPO=$POKY_NATIVE_SYSROOT/usr/bin/createrepo
+CREATEREPO=$OECORE_NATIVE_SYSROOT/usr/bin/createrepo
if [ ! -e "$CREATEREPO" ]; then
echo "Error: can't find createrepo binary"
echo "please run bitbake createrepo-native first"