From: Rod Whitby Date: Tue, 26 Jul 2005 13:21:48 +0000 (+0000) Subject: Small fixes to openslug and unslung Makefiles for native builds X-Git-Tag: Release-2010-05/1~9453^2~2960^2^2~9^2~2^2~3^2^2~4^2~114 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dde76611a8f3a2606b9ed24ea1a4c6653fde5d04;p=openembedded.git Small fixes to openslug and unslung Makefiles for native builds --- diff --git a/openslug/Makefile b/openslug/Makefile index d6fc3dd8dd..657ed278f5 100644 --- a/openslug/Makefile +++ b/openslug/Makefile @@ -2,7 +2,7 @@ # Licensed under the GPL v2 or later openslug-firmware: setup-env conf/local.conf - . setup-env ; bitbake openslug-packages + . ./setup-env ; bitbake openslug-packages # This does the same thing but with a clean environment # The HOME setting prevents user environment settings @@ -11,7 +11,7 @@ openslug-firmware: setup-env conf/local.conf # .cache in the home directory. openslug-firmware-safe: setup-env conf/local.conf env -i CCACHE_DISABLE=1 CCACHE_DIR="`pwd`/tmp/ccache" HOME=/dev/null \ - sh -c '. setup-env; bitbake openslug-packages' + sh -c '. ./setup-env; bitbake openslug-packages' setup-env: [ -e bitbake ] || ln -s ../bitbake . diff --git a/unslung/Makefile b/unslung/Makefile index a435a1121e..7016538075 100644 --- a/unslung/Makefile +++ b/unslung/Makefile @@ -2,7 +2,7 @@ # Licensed under the GPL v2 or later unslung-firmware: setup-env conf/local.conf - . setup-env ; bitbake unslung-packages + . ./setup-env ; bitbake unslung-packages # This does the same thing but with a clean environment # The HOME setting prevents user environment settings @@ -11,7 +11,7 @@ unslung-firmware: setup-env conf/local.conf # .cache in the home directory. unslung-firmware-safe: setup-env conf/local.conf env -i CCACHE_DISABLE=1 CCACHE_DIR="`pwd`/tmp/ccache" HOME=/dev/null \ - sh -c '. setup-env; bitbake unslung-packages' + sh -c '. ./setup-env; bitbake unslung-packages' setup-env: [ -e bitbake ] || ln -s ../bitbake .