Small fixes to openslug and unslung Makefiles for native builds
authorRod Whitby <rod@whitby.id.au>
Tue, 26 Jul 2005 13:21:48 +0000 (13:21 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Tue, 26 Jul 2005 13:21:48 +0000 (13:21 +0000)
openslug/Makefile
unslung/Makefile

index d6fc3dd..657ed27 100644 (file)
@@ -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 .
index a435a11..7016538 100644 (file)
@@ -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 .