diff options
-rwxr-xr-x | poky-init-build-env | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/poky-init-build-env b/poky-init-build-env index c2f2c04406..45b41087a3 100755 --- a/poky-init-build-env +++ b/poky-init-build-env | |||
@@ -35,7 +35,11 @@ PKGDIR=$OEROOT/meta/ | |||
35 | BUILDDIR=$OEROOT/build/ | 35 | BUILDDIR=$OEROOT/build/ |
36 | MSG='' | 36 | MSG='' |
37 | 37 | ||
38 | PATH=$BBDIR/bin/:$PATH | 38 | BUILD_ARCH=`uname -m` |
39 | BUILD_OS=`uname | tr [A-Z] [a-z]` | ||
40 | BUILD_SYS=$BUILD_ARCH-$BUILD_OS | ||
41 | |||
42 | PATH=$BBDIR/bin/:$OEROOT/scripts:$PATH | ||
39 | 43 | ||
40 | cd $BUILDDIR | 44 | cd $BUILDDIR |
41 | 45 | ||
@@ -61,7 +65,7 @@ BBPATH="`readlink -f $HOME/.oe`:`readlink -f $HOME/.poky`:$BBPATH" | |||
61 | if test x"$PKGDIR" != x"$BUILDDIR"; then | 65 | if test x"$PKGDIR" != x"$BUILDDIR"; then |
62 | BBPATH=$BUILDDIR:$BBPATH | 66 | BBPATH=$BUILDDIR:$BBPATH |
63 | fi | 67 | fi |
64 | export BBPATH | 68 | export BBPATH OEROOT BUILD_SYS BUILDDIR |
65 | 69 | ||
66 | # Kill off the TERMINFO variable, as glibc will grab its contents in its 'make | 70 | # Kill off the TERMINFO variable, as glibc will grab its contents in its 'make |
67 | # install' if set | 71 | # install' if set |