If using the autoconf in the local tree, invoke it using /bin/sh, so
authorTheodore Tso <tytso@mit.edu>
Mon, 7 Aug 1995 23:38:44 +0000 (23:38 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 7 Aug 1995 23:38:44 +0000 (23:38 +0000)
that it works even if autoconf has been checked out from SCCS without
the execute bit set.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6451 dc483132-0cff-0310-8789-dd5450dbe970

src/util/ChangeLog
src/util/reconf

index 1eed9663e51c639f2f04f6209c637cba6c127470..b78b2ad306075c2d7191c29b98d3fbf59ed204e2 100644 (file)
@@ -1,3 +1,9 @@
+Mon Aug  7 19:36:01 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * reconf: If using the autoconf in the local tree, invoke it using
+               /bin/sh, so that it works even if autoconf has been
+               checked out from SCCS without the execute bit set.
+
 Wed Jul 26 15:39:53 1995  Sam Hartman  <hartmans@tertius.mit.edu>
 
        * configure.in (SHLIB_TAIL_COMP): Add pty to CONFIG_DIRS
index 466ee3ec56cd6922b9c1e26c7f5478f3808233fe..9251467ea7b15a744e127a52d5b677a7c7cd866e 100644 (file)
@@ -1,9 +1,11 @@
 #!/bin/sh
 
 force=
-autoreconf=./util/autoconf/autoreconf
+autoreconfprog=./util/autoconf/autoreconf
 verbose=false
 
+autoreconf="/bin/sh $autoreconfprog"
+
 usage="Usage: $0 [--force] [--verbose] [--help]"
 for option
 do
@@ -20,7 +22,7 @@ do
 done
 
 
-if test ! -f $autoreconf ; then
+if test ! -f $autoreconfprog ; then
        if autoreconf --version | grep -q "version 2.[123456789]" && \
           autoconf --version  | grep -q "version 2.[123456789]" && \
           autoheader --version | grep -q "version 2.[123456789]" ; then