diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2012-07-19 10:05:00 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2012-07-19 10:19:32 -0700 |
commit | 1942576bb11c2d85dad8c6f3e4438226d285dd0c (patch) | |
tree | d2c31ee9bfa6dce238c487240002dfa57fd6c9e6 /configure | |
parent | f39df7ff83f8ebf9a0ccd0ef26751cf6a6606f79 (diff) | |
download | glibc-hjl/implies.tar.gz glibc-hjl/implies.tar.xz glibc-hjl/implies.zip |
Change Implies to shell script hjl/implies
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/configure b/configure index fab64655a8..55c7fe920d 100755 --- a/configure +++ b/configure @@ -4278,18 +4278,9 @@ while test $# -gt 0; do if test -f $xsrcdir$name/Implies; then # Collect more names from the `Implies' file (removing comments). - implied_candidate="`sed 's/#.*$//' < $xsrcdir$name/Implies`" + implied_candidate="`. $xsrcdir$name/Implies`" implied= for x in $implied_candidate; do - case $x in - "\$"*:*:*) - implied_var="`echo $x | sed 's/:.*$//'`" - eval "implied_var=$implied_var" - implied_cond="`echo $x | sed 's/.*:\(.*\):.*$/\1/'`" - test "$implied_var" = "$implied_cond" || continue - x="`echo $x | sed 's/.*://'`" - ;; - esac found=no if test -d $xsrcdir$name_base/$x; then implied="$implied $name_base/$x"; |