Add BUILDROOT_DL_DIR to dependencies.sh and fix whitespace damage (sorry)
authorUlf Samuelsson <ulf.samuelsson@atmel.com>
Mon, 20 Aug 2007 15:47:42 +0000 (15:47 -0000)
committerUlf Samuelsson <ulf.samuelsson@atmel.com>
Mon, 20 Aug 2007 15:47:42 +0000 (15:47 -0000)
Makefile
toolchain/dependencies/dependencies.sh

index c1df6a303977dfb04bbe94f1a9951ee974087678..44676f1f1aa86d61de67d9a3436511677efc0449 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -37,7 +37,7 @@ noconfig_targets := menuconfig config oldconfig randconfig \
 ifeq ($(filter $(noconfig_targets),$(MAKECMDGOALS)),)
 -include $(TOPDIR).config
 endif
-ifneq  ($(BUILDROOT_DL_DIR),)
+ifneq ($(BUILDROOT_DL_DIR),)
 BR2_DL_DIR:=$(BUILDROOT_DL_DIR)
 endif
 
index d1bccd247a324c833ed5820e08bc3478cd7b20c1..60b9b659660cec00c998cbbc95defd195d3a89fc 100755 (executable)
@@ -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";