# HG changeset patch # User tbell # Date 1365537922 25200 # Node ID a09e9c9ca9635e482814594f0d9d4046fa4b5a4e # Parent 2ef28c12d649e323fc7ce8c863f756f3ae27e4fe 8011348: use of which in common/autoconf/autogen.sh is not portable Reviewed-by: erikj, katleman, mduigou diff -r 2ef28c12d649 -r a09e9c9ca963 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}"