* reconf (usage): fix pathname in message.
authorMark Eichin <eichin@mit.edu>
Wed, 26 Apr 1995 15:39:28 +0000 (15:39 +0000)
committerMark Eichin <eichin@mit.edu>
Wed, 26 Apr 1995 15:39:28 +0000 (15:39 +0000)
(verbose): add -v --verbose to echo actual autoreconf line.

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

src/util/ChangeLog
src/util/reconf

index f8ef0130816779d5c88d991d9a9dbf1fc9ba16c7..c286a47d419fbacb99b082538a3577e48a63895f 100644 (file)
@@ -1,3 +1,8 @@
+Wed Apr 26 11:31:04 1995  Mark Eichin  <eichin@cygnus.com>
+
+       * reconf (usage): fix pathname in message.
+       (verbose): add -v --verbose to echo actual autoreconf line.
+
 Thu Apr 20 21:19:36 1995  Theodore Y. Ts'o  (tytso@dcl)
 
        * depfix.sed: Also remove pathnames of the form /mit/cygnus....
index c9955390923c7edc18a8cf65d6b9cc9d36351c26..3d8d553184f3e9a10ec128267d5f056b9f1bd2ce 100644 (file)
@@ -2,8 +2,9 @@
 
 force=
 autoreconf=./util/autoconf/autoreconf
+verbose=false
 
-usage="Usage: ./config.status [--recheck] [--version] [--help]"
+usage="Usage: $0 [--recheck] [--version] [--help]"
 for option
 do
   case "$option" in
@@ -12,6 +13,8 @@ do
     force=--force ;;
   -help | --help | --hel | --he | --h)
     echo "$usage"; exit 0 ;;
+  -v | --verbose)
+    verbose=true ;;
   *) echo "$usage"; exit 1 ;;
   esac
 done
@@ -33,4 +36,7 @@ if test ! -f $autoreconf ; then
        fi
 fi
 
+if $verbose ; then 
+       echo $autoreconf -m util/autoconf -l . --verbose $force 
+fi
 $autoreconf -m util/autoconf -l . --verbose $force