diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-09 17:28:27 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-09 17:28:27 +0000 |
commit | 13c1b9297314ad8153a005f3da98f54cc1313399 (patch) | |
tree | 3e38faa5ac734cd34003842f12590bd21174e24a | |
parent | fd0bad3622fd0b105476853cb70864bc11fe8fa5 (diff) | |
download | buildroot-novena-13c1b9297314ad8153a005f3da98f54cc1313399.tar.gz buildroot-novena-13c1b9297314ad8153a005f3da98f54cc1313399.zip |
- add paranoia warning about $INCLUDES
-rwxr-xr-x | toolchain/dependencies/dependencies.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh index 18970e92c..a0506ec8c 100755 --- a/toolchain/dependencies/dependencies.sh +++ b/toolchain/dependencies/dependencies.sh @@ -46,6 +46,12 @@ if test -n "$CFLAGS" ; then fi; echo "CFLAGS clean: Ok" +if test -n "$INCLUDES" ; then + echo "INCLUDES clean: FALSE" + /bin/echo -e "WARNING: INCLUDES contains:\n\t'$INCLUDES'" +else + echo "INCLUDES clean: Ok" +fi if test -n "$CXXFLAGS" ; then echo "CXXFLAGS clean: FALSE" |