8011348: use of which in common/autoconf/autogen.sh is not portable
authortbell
Tue, 09 Apr 2013 13:05:22 -0700
changeset 16584 122a0d54b2a6
parent 16583 f29d60d73e42
child 16585 f53ea98c2a4b
8011348: use of which in common/autoconf/autogen.sh is not portable Reviewed-by: erikj, katleman, mduigou
common/autoconf/autogen.sh
--- a/common/autoconf/autogen.sh	Tue Apr 09 09:45:48 2013 +0200
+++ b/common/autoconf/autogen.sh	Tue Apr 09 13:05:22 2013 -0700
@@ -43,8 +43,8 @@
 
 custom_hook=$custom_script_dir/custom-hook.m4
 
-AUTOCONF=$(which autoconf 2> /dev/null);
-AUTOCONF_267=$(which autoconf-2.67 2> /dev/null);
+AUTOCONF="`which autoconf 2> /dev/null | grep -v '^no autoconf in'`"
+AUTOCONF_267="`which autoconf-2.67 2> /dev/null | grep -v '^no autoconf-2.67 in'`"
 
 echo "Autoconf found: ${AUTOCONF}"
 echo "Autoconf-2.67 found: ${AUTOCONF_267}"