Author: nslater Date: Sat Dec 20 12:49:39 2008 New Revision: 728340 URL: http://svn.apache.org/viewvc?rev=728340&view=rev Log: removed redundant calls to which Modified: couchdb/trunk/bootstrap Modified: couchdb/trunk/bootstrap URL: http://svn.apache.org/viewvc/couchdb/trunk/bootstrap?rev=728340&r1=728339&r2=728340&view=diff ============================================================================== --- couchdb/trunk/bootstrap (original) +++ couchdb/trunk/bootstrap Sat Dec 20 12:49:39 2008 @@ -132,7 +132,7 @@ run_aclocal () { if test -x "`which aclocal || true`"; then echo "Running aclocal" - `which aclocal` -I m4 + aclocal -I m4 else echo "Can't find aclocal" exit $SCRIPT_ERROR @@ -142,11 +142,11 @@ run_libtoolize () { if test -x "`which libtoolize || true`"; then echo "Running libtoolize" - `which libtoolize` -f -c + libtoolize -f -c else if test -x "`which glibtoolize || true`"; then echo "Running glibtoolize" - `which glibtoolize` -f -c + glibtoolize -f -c else echo "Can't find libtoolize or glibtoolize" exit $SCRIPT_ERROR @@ -157,7 +157,7 @@ run_autoheader () { if test -x "`which autoheader || true`"; then echo "Running autoheader" - `which autoheader` -f + autoheader -f else echo "Can't find autoheader" exit $SCRIPT_ERROR @@ -168,7 +168,7 @@ AUTOMAKE_OPTION_COLLECTION="" if test -x "`which automake || true`"; then echo "Running automake" - `which automake` -f -c -a --gnits + automake -f -c -a --gnits else echo "Can't find automake" exit $SCRIPT_ERROR @@ -178,7 +178,7 @@ run_autoconf () { if test -x "`which autoconf || true`"; then echo "Running autoconf" - `which autoconf` -f + autoconf -f else echo "Can't find autoconf" exit $SCRIPT_ERROR