diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-22 18:11:41 +0000 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-03-22 18:11:41 +0000 |
commit | 90040ce7b5bcba842f3d1eca92a2dc150fd296fd (patch) | |
tree | 3211fcabae23477f9244b28d8d1524dac47f00c6 /scripts/poky-env-internal | |
parent | 666c753d4bf3d6d1defb4e4326a4264b4625aca0 (diff) | |
download | poky-90040ce7b5bcba842f3d1eca92a2dc150fd296fd.tar.gz |
Switch to bblayers configuration
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'scripts/poky-env-internal')
-rwxr-xr-x | scripts/poky-env-internal | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/scripts/poky-env-internal b/scripts/poky-env-internal index 4bfcf63c59..b931e29323 100755 --- a/scripts/poky-env-internal +++ b/scripts/poky-env-internal | |||
@@ -93,11 +93,17 @@ fi | |||
93 | if [ "x" = "x$POKYLOCALCONF" ]; then | 93 | if [ "x" = "x$POKYLOCALCONF" ]; then |
94 | POKYLOCALCONF="$BUILDDIR/conf/local.conf.sample" | 94 | POKYLOCALCONF="$BUILDDIR/conf/local.conf.sample" |
95 | fi | 95 | fi |
96 | |||
97 | if ! (test -r "$BUILDDIR/conf/local.conf"); then | 96 | if ! (test -r "$BUILDDIR/conf/local.conf"); then |
98 | cp -f $POKYLOCALCONF $BUILDDIR/conf/local.conf | 97 | cp -f $POKYLOCALCONF $BUILDDIR/conf/local.conf |
99 | fi | 98 | fi |
100 | 99 | ||
100 | if [ "x" = "x$POKYLAYERCONF" ]; then | ||
101 | POKYLAYERCONF="$BUILDDIR/conf/bblayers.conf.sample" | ||
102 | fi | ||
103 | if ! (test -r "$BUILDDIR/conf/bblayers.conf"); then | ||
104 | cp -f $POKYLAYERCONF $BUILDDIR/conf/bblayers.conf | ||
105 | fi | ||
106 | |||
101 | export BBPATH OEROOT BUILD_SYS BUILDDIR | 107 | export BBPATH OEROOT BUILD_SYS BUILDDIR |
102 | 108 | ||
103 | # Kill off the TERMINFO variable, as glibc will grab its contents in its 'make | 109 | # Kill off the TERMINFO variable, as glibc will grab its contents in its 'make |