diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-20 15:47:42 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-08-20 15:47:42 +0000 |
commit | adbc5a18cb21e6b5203d559ba95dfa45a7f89deb (patch) | |
tree | 5946f0d8a738132508dfd46c4417fc258a675674 /toolchain | |
parent | ac4e670d345b58ce7f0c871376f789e3f0f5a04a (diff) | |
download | buildroot-novena-adbc5a18cb21e6b5203d559ba95dfa45a7f89deb.tar.gz buildroot-novena-adbc5a18cb21e6b5203d559ba95dfa45a7f89deb.zip |
Add BUILDROOT_DL_DIR to dependencies.sh and fix whitespace damage (sorry)
Diffstat (limited to 'toolchain')
-rwxr-xr-x | toolchain/dependencies/dependencies.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index d1bccd247..60b9b6596 100755 --- a/toolchain/dependencies/dependencies.sh +++ b/toolchain/dependencies/dependencies.sh @@ -11,6 +11,13 @@ export LC_ALL=C # check build system 'environment' # ############################################################# +if test -n "$BUILDROOT_DL_DIR" ; then + /bin/echo -e "Overriding \$(DL_DIR) in '.config'. Ok" + /bin/echo -e "External download directory: Ok ($BUILDROOT_DL_DIR)" +else + echo "BUILDROOT_DL_DIR clean: Ok" +fi + if test -n "$CC" ; then echo "CC clean: FALSE" /bin/echo -e "\n\nYou must run 'unset CC' so buildroot can run with"; @@ -19,7 +26,6 @@ if test -n "$CC" ; then fi; echo "CC clean: Ok" - if test -n "$CXX" ; then echo "CXX clean: FALSE" /bin/echo -e "\n\nYou must run 'unset CXX' so buildroot can run with"; |