summaryrefslogtreecommitdiffstats
path: root/toolchain
diff options
context:
space:
mode:
authorNick Leverton <nick@leverton.org>2010-06-09 12:04:25 +0200
committerPeter Korsgaard <jacmet@sunsite.dk>2010-06-09 12:04:25 +0200
commit016eb67078952e6309d573d447b7df25cde0aa15 (patch)
treef7465a8dabb34cb6f396c8e371e8b43cc402b645 /toolchain
parent239181f865e8b6fa286264b190c0b89796fdd19e (diff)
downloadbuildroot-novena-016eb67078952e6309d573d447b7df25cde0aa15.tar.gz
buildroot-novena-016eb67078952e6309d573d447b7df25cde0aa15.zip
dependencies.sh: fix CWD in PATH check
Closes #1999 Signed-off-by: Nick Leverton <nick@leverton.org> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain')
-rwxr-xr-xtoolchain/dependencies/dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/dependencies/dependencies.sh b/toolchain/dependencies/dependencies.sh
index 34149c1a3..96f843fc5 100755
--- a/toolchain/dependencies/dependencies.sh
+++ b/toolchain/dependencies/dependencies.sh
@@ -41,7 +41,7 @@ if test -n "$PATH" ; then
/bin/echo TRiGGER_start"$PATH"TRiGGER_end | /bin/grep ':\.:' >/dev/null 2>&1 ||
/bin/echo TRiGGER_start"$PATH"TRiGGER_end | /bin/grep 'TRiGGER_start\.:' >/dev/null 2>&1 ||
/bin/echo TRiGGER_start"$PATH"TRiGGER_end | /bin/grep ':\.TRiGGER_end' >/dev/null 2>&1 ||
- /bin/echo TRiGGER_start"$PATH"TRiGGER_end | /bin/grep 'TRIGGER_start\.TRIGGER_end' >/dev/null 2>&1
+ /bin/echo TRiGGER_start"$PATH"TRiGGER_end | /bin/grep 'TRiGGER_start\.TRiGGER_end' >/dev/null 2>&1
if test $? = 0; then
/bin/echo -e "\nYou seem to have the current working directory in your"
/bin/echo -e "PATH environment variable. This doesn't work.\n"