From af62c52b3f9ce1c27bb658f6723704038dd11b54 Mon Sep 17 00:00:00 2001 From: Mark Eichin Date: Wed, 26 Apr 1995 15:39:28 +0000 Subject: * reconf (usage): fix pathname in message. (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 | 5 +++++ src/util/reconf | 8 +++++++- 2 files changed, 12 insertions(+), 1 deletion(-) (limited to 'src/util') diff --git a/src/util/ChangeLog b/src/util/ChangeLog index f8ef013081..c286a47d41 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,8 @@ +Wed Apr 26 11:31:04 1995 Mark Eichin + + * 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.... diff --git a/src/util/reconf b/src/util/reconf index c995539092..3d8d553184 100644 --- a/src/util/reconf +++ b/src/util/reconf @@ -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 -- cgit