aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2008-12-08 11:32:37 +0100
committerKoen Kooi <koen@openembedded.org>2008-12-08 11:32:37 +0100
commit325476d19b821623dbe151d7026c20dfd3754432 (patch)
treebf4d5cfc5df15118b6cae0bb08d3b41315d6dfe7 /contrib
parent4ab5abe36335594ebc8b26cf98e32f82b7edc39b (diff)
downloadopenembedded-325476d19b821623dbe151d7026c20dfd3754432.tar.gz
angstrom: rename ANGSTROM_MODE to ANGSTROMLIBC to make it work with bitbake env filtering (>1.8.10)
* http://www.angstrom-distribution.org/files/source-me.txt has been adjusted as well
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/angstrom/build-feeds.sh4
-rwxr-xr-xcontrib/angstrom/build-release.sh4
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/angstrom/build-feeds.sh b/contrib/angstrom/build-feeds.sh
index a156d5b8c8..fd07747aad 100755
--- a/contrib/angstrom/build-feeds.sh
+++ b/contrib/angstrom/build-feeds.sh
@@ -25,12 +25,12 @@ do_build() {
if [ "$BUILD_CLEAN" != "" ]
then
- ANGSTROM_MODE=uclibc MACHINE=$BUILD_MACHINE bitbake -c clean $BUILD_CLEAN
+ ANGSTROMLIBC=uclibc MACHINE=$BUILD_MACHINE bitbake -c clean $BUILD_CLEAN
fi
for target in $BUILD_TARGETS
do
- ANGSTROM_MODE=uclibc MACHINE=$BUILD_MACHINE bitbake $target && do_report_success
+ ANGSTROMLIBC=uclibc MACHINE=$BUILD_MACHINE bitbake $target && do_report_success
done
fi
}
diff --git a/contrib/angstrom/build-release.sh b/contrib/angstrom/build-release.sh
index 0912476b47..14244a315e 100755
--- a/contrib/angstrom/build-release.sh
+++ b/contrib/angstrom/build-release.sh
@@ -6,7 +6,7 @@ do_build() {
if [ $DO_UCLIBC = 1 ]
then
BUILD_MODE="uclibc"
- echo 'ANGSTROM_MODE = "uclibc"' > conf/auto.conf
+ echo 'ANGSTROMLIBC = "uclibc"' > conf/auto.conf
if [ "$BUILD_CLEAN" != "" ]
then
@@ -20,7 +20,7 @@ do_build() {
fi
BUILD_MODE="glibc"
- echo 'ANGSTROM_MODE = "glibc"' > conf/auto.conf
+ echo 'ANGSTROMLIBC = "glibc"' > conf/auto.conf
if [ "$BUILD_CLEAN" != "" ]
then