diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-10 16:41:12 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-10 16:41:12 +0200 |
commit | 61fdb0e510b73d4330198d59beb82038d4e8e58a (patch) | |
tree | 2577abc87cbbaa71659830b63e53fcc86ffa77a4 | |
parent | 68fba106a2ee820533410d781a3e5d17dece74a7 (diff) | |
download | crosstool-ng-61fdb0e510b73d4330198d59beb82038d4e8e58a.tar.gz crosstool-ng-61fdb0e510b73d4330198d59beb82038d4e8e58a.tar.bz2 crosstool-ng-61fdb0e510b73d4330198d59beb82038d4e8e58a.zip |
configure: fix --with-foo=/path/to/foo
When a required tool is specified with --with-foo, store the variable
in the list.
(transplanted from 1d43b65599a4b869d83d4db67b9715b1298d74f7)
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -121,6 +121,7 @@ check_for() { eval val="\${${var}}" if [ -n "${val}" ]; then printf "${val} (cached)\n" + add_to_var_list "${var}" return 0 fi fi |