From: Rod Whitby Date: Mon, 25 Jul 2005 22:23:45 +0000 (+0000) Subject: Changed 'source' to '.' in the OpenSlug makefile X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb97f2a5f236414f4a6257171cd2f09aa4472ac5;p=openembedded.git Changed 'source' to '.' in the OpenSlug makefile --- diff --git a/openslug/Makefile b/openslug/Makefile index e037ddf63c..2d8bf76463 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 - ( source 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 'source setup-env; bitbake openslug-packages' + sh -c '. setup-env; bitbake openslug-packages' setup-env: [ -e bitbake ] || ( ln -s ../bitbake . )