diff options
author | Titus von Boxberg <titus@v9g.de> | 2011-08-22 09:41:35 +0200 |
---|---|---|
committer | Titus von Boxberg <titus@v9g.de> | 2011-08-22 09:41:35 +0200 |
commit | e9798b85210faee48dd29bae64c6e1bddca70296 (patch) | |
tree | ce5e0133273a36c30317f75df83d81d1006aea84 | |
parent | 149067397e08e185e32d95dcc1361dc68a0b1d1e (diff) | |
download | crosstool-ng-e9798b85210faee48dd29bae64c6e1bddca70296.tar.gz crosstool-ng-e9798b85210faee48dd29bae64c6e1bddca70296.tar.bz2 crosstool-ng-e9798b85210faee48dd29bae64c6e1bddca70296.zip |
configure: fix --with-prog=[...]
check_for didn't set variable 'where' when the path to a prog
was passed manually "(cached)".
Signed-off-by: "Titus von Boxberg" <titus@v9g.de>
(transplanted from b1be254591e7b524a0b06a2247a9331ebe0faf1d)
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -171,6 +171,7 @@ check_for() { eval val="\${${var}}" if [ -n "${val}" ]; then status="${val} (cached)\n" + where="${val}" break fi fi |