From: Ken Raeburn Date: Wed, 17 Jul 2002 20:13:30 +0000 (+0000) Subject: * reconf: Create include/krb5/autoconf.stmp on success if it didn't already exist X-Git-Tag: krb5-1.3-alpha1~565 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=fded2ddcdbcbecc5fa297f3b7267874aca29af8e;p=krb5.git * 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 --- 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 + + * reconf: Create include/krb5/autoconf.stmp on success if it + didn't already exist. + 2002-07-05 Ken Raeburn * 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