diff options
| author | Ken Raeburn <raeburn@mit.edu> | 2002-07-17 20:13:30 +0000 |
|---|---|---|
| committer | Ken Raeburn <raeburn@mit.edu> | 2002-07-17 20:13:30 +0000 |
| commit | fded2ddcdbcbecc5fa297f3b7267874aca29af8e (patch) | |
| tree | 46c9da7e60ff69af3552e029eeb609731fcdd54c | |
| parent | d893fa64aae8130d590a77825aef2189f08d4645 (diff) | |
| download | krb5-fded2ddcdbcbecc5fa297f3b7267874aca29af8e.tar.gz krb5-fded2ddcdbcbecc5fa297f3b7267874aca29af8e.tar.xz krb5-fded2ddcdbcbecc5fa297f3b7267874aca29af8e.zip | |
* reconf: Create include/krb5/autoconf.stmp on success if it didn't already exist
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14654 dc483132-0cff-0310-8789-dd5450dbe970
| -rw-r--r-- | src/util/ChangeLog | 5 | ||||
| -rw-r--r-- | src/util/reconf | 7 |
2 files changed, 11 insertions, 1 deletions
diff --git a/src/util/ChangeLog b/src/util/ChangeLog index eee5b0c77..2669b70c5 100644 --- a/src/util/ChangeLog +++ b/src/util/ChangeLog @@ -1,3 +1,8 @@ +2002-07-17 Ken Raeburn <raeburn@mit.edu> + + * reconf: Create include/krb5/autoconf.stmp on success if it + didn't already exist. + 2002-07-05 Ken Raeburn <raeburn@mit.edu> * Makefile.in (SLIBSH): Use vertical-bar instead of comma for diff --git a/src/util/reconf b/src/util/reconf index b896227c5..39713eaef 100644 --- a/src/util/reconf +++ b/src/util/reconf @@ -84,4 +84,9 @@ fi if $verbose ; then echo $autoreconf $autoreconfoptions -l $localdir --verbose $force fi -$autoreconf $autoreconfoptions -l $localdir --verbose $force +$autoreconf $autoreconfoptions -l $localdir --verbose $force +if test $? = 0 ; then + if test ! -d include/krb5/autoconf.stmp ; then + cp /dev/null include/krb5/autoconf.stmp + fi +fi |
