summaryrefslogtreecommitdiff
path: root/toolchain/dependencies
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2006-12-13 07:25:22 +0000
committerEric Andersen <andersen@codepoet.org>2006-12-13 07:25:22 +0000
commit28283d54a84d85fc8395dc51e415e7922e72452b (patch)
tree21e14f259999a7dce3dfb27cdd22688ab0ea8a0d /toolchain/dependencies
parentef6528bb8fb90da4ac20db049121953dfd15315d (diff)
fix cut-n-paste typo, where I replaced CFLAGS with two copies CXXFLAGS
fix spacing on env var failure notices
Diffstat (limited to 'toolchain/dependencies')
-rwxr-xr-xtoolchain/dependencies/dependencies.sh16
1 files changed, 8 insertions, 8 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh
index 65febc034..48e677862 100755
--- a/toolchain/dependencies/dependencies.sh
+++ b/toolchain/dependencies/dependencies.sh
@@ -12,7 +12,7 @@ echo "Checking build system dependencies:"
#
#############################################################
if test -n "$CC" ; then
- echo "CC clean: FALSE"
+ echo "CC clean: FALSE"
/bin/echo -e "\n\nYou must run 'unset CC' so buildroot can run with";
/bin/echo -e "a clean enviroment on your build machine\n";
exit 1;
@@ -21,7 +21,7 @@ echo "CC clean: Ok"
if test -n "$CXX" ; then
- echo "CXX clean: FALSE"
+ echo "CXX clean: FALSE"
/bin/echo -e "\n\nYou must run 'unset CXX' so buildroot can run with";
/bin/echo -e "a clean enviroment on your build machine\n";
exit 1;
@@ -30,7 +30,7 @@ echo "CXX clean: Ok"
if test -n "$CPP" ; then
- echo "CPP clean: FALSE"
+ echo "CPP clean: FALSE"
/bin/echo -e "\n\nYou must run 'unset CPP' so buildroot can run with";
/bin/echo -e "a clean enviroment on your build machine\n";
exit 1;
@@ -38,17 +38,17 @@ fi;
echo "CPP clean: Ok"
-if test -n "$CXXFLAGS" ; then
- echo "CXXFLAGS clean: FALSE"
- /bin/echo -e "\n\nYou must run 'unset CXXFLAGS' so buildroot can run with";
+if test -n "$CFLAGS" ; then
+ echo "CFLAGS clean: FALSE"
+ /bin/echo -e "\n\nYou must run 'unset CFLAGS' so buildroot can run with";
/bin/echo -e "a clean enviroment on your build machine\n";
exit 1;
fi;
-echo "CXXFLAGS clean: Ok"
+echo "CFLAGS clean: Ok"
if test -n "$CXXFLAGS" ; then
- echo "CXXFLAGS clean: FALSE"
+ echo "CXXFLAGS clean: FALSE"
/bin/echo -e "\n\nYou must run 'unset CXXFLAGS' so buildroot can run with";
/bin/echo -e "a clean enviroment on your build machine\n";
exit 1;