summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTheodore Tso <tytso@mit.edu>1995-08-07 23:38:44 +0000
committerTheodore Tso <tytso@mit.edu>1995-08-07 23:38:44 +0000
commitfd2bee792353b98d05d928fe27e8086b0cda03b2 (patch)
tree410f86c189ef379277c88380e691856bf05eeda9 /src
parentaea27ad3a6427cff9058651b6fb4b5ea5c2b7401 (diff)
downloadkrb5-fd2bee792353b98d05d928fe27e8086b0cda03b2.tar.gz
krb5-fd2bee792353b98d05d928fe27e8086b0cda03b2.tar.xz
krb5-fd2bee792353b98d05d928fe27e8086b0cda03b2.zip
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. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@6451 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src')
-rw-r--r--src/util/ChangeLog6
-rw-r--r--src/util/reconf6
2 files changed, 10 insertions, 2 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog
index 1eed9663e..b78b2ad30 100644
--- a/src/util/ChangeLog
+++ b/src/util/ChangeLog
@@ -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
diff --git a/src/util/reconf b/src/util/reconf
index 466ee3ec5..9251467ea 100644
--- a/src/util/reconf
+++ b/src/util/reconf
@@ -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