summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--openslug/Makefile4
-rw-r--r--unslung/Makefile4
2 files changed, 4 insertions, 4 deletions
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 .