diff options
author | Noah Slater <nslater@apache.org> | 2008-12-20 20:49:39 +0000 |
---|---|---|
committer | Noah Slater <nslater@apache.org> | 2008-12-20 20:49:39 +0000 |
commit | a99bdfe28f4d434e1f0ac2c43a88c203bb57b8ab (patch) | |
tree | d863e3b94c14a4be443c29b72102af187abdd186 /bootstrap | |
parent | 254fc2ac67ab1e5452cc3fd11aadfe3b0aa805e1 (diff) |
removed redundant calls to which
git-svn-id: https://svn.apache.org/repos/asf/couchdb/trunk@728340 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -132,7 +132,7 @@ process_file_collection () { 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_aclocal () { 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_libtoolize () { 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 @@ run_automake () { 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_automake () { 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 |