* pre.in (AUTOCONF, AUTOHEADER): Always set to autoconf and autoheader
authorKen Raeburn <raeburn@mit.edu>
Tue, 8 Jun 2004 19:26:06 +0000 (19:26 +0000)
committerKen Raeburn <raeburn@mit.edu>
Tue, 8 Jun 2004 19:26:06 +0000 (19:26 +0000)
respectively.
(AUTOCONFFLAGS, AUTOHEADERFLAGS): Always set to empty.
* post.in (Makefile): Always run autoconf with --include, don't bother with
--localdir any more.  Don't delete autom4te.cache here.
(clean-unix): Delete autom4te.cache.

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

src/config/ChangeLog
src/config/post.in
src/config/pre.in

index 81cec7497f357563e56bb05bf2de25a332d15c65..73b0437a26efd994a3ce8f5c23639b4fae07a4ac 100644 (file)
@@ -1,5 +1,13 @@
 2004-06-08  Ken Raeburn  <raeburn@mit.edu>
 
+       * pre.in (AUTOCONF, AUTOHEADER): Always set to autoconf and
+       autoheader respectively.
+       (AUTOCONFFLAGS, AUTOHEADERFLAGS): Always set to empty.
+       * post.in (Makefile): Always run autoconf with --include, don't
+       bother with --localdir any more.  Don't delete autom4te.cache
+       here.
+       (clean-unix): Delete autom4te.cache.
+
        * shlib.conf (*-*-darwin*, *-*-rhapsody*): Add
        -Wl,-search_paths_first to linker flags.
 
index 7762782319c5d869c242bbeac9ecd777a19912ec..7c6cf0ed8d04204fd6bfad78a1190d1bea098685 100644 (file)
@@ -122,6 +122,7 @@ clean:: clean-$(WHAT)
 
 clean-unix::
        $(RM) $(OBJS) $(DEPTARGETS) $(EXTRA_FILES)
+       -$(RM) -r $(srcdir)/$(thisconfigdir)/autom4te.cache
 
 clean-windows::
        $(RM) *.$(OBJEXT)
@@ -147,11 +148,8 @@ $(thisconfigdir)/config.status: $(srcdir)/$(thisconfigdir)/configure
        cd $(thisconfigdir) && $(SHELL) config.status --recheck
 $(srcdir)/$(thisconfigdir)/configure: @MAINT@ $(srcdir)/$(thisconfigdir)/configure.in \
                $(SRCTOP)/aclocal.m4
-       -$(RM) -r $(srcdir)/$(thisconfigdir)/autom4te.cache
        cd $(srcdir)/$(thisconfigdir) && \
-               ($(AUTOCONF) --include=$(CONFIG_RELTOPDIR) $(AUTOCONFFLAGS) || \
-                $(AUTOCONF) --localdir=$(CONFIG_RELTOPDIR) $(AUTOCONFFLAGS))
-       -$(RM) -r $(srcdir)/$(thisconfigdir)/autom4te.cache
+               $(AUTOCONF) --include=$(CONFIG_RELTOPDIR) $(AUTOCONFFLAGS)
 
 RECURSE_TARGETS=all-recurse clean-recurse distclean-recurse install-recurse \
        check-recurse depend-recurse Makefiles-recurse install-headers-recurse
index 7668a9d59ea96f40520593f9ad1772af682d575e..2bf2f155ad5d25d5bdd973ea2f1ab7057e6e29ff 100644 (file)
@@ -249,11 +249,10 @@ LEX = @LEX@
 LEXLIB = @LEXLIB@
 YACC = @YACC@
 PERL = @PERL@
-AUTOCONF = @AUTOCONF@
-AUTOCONFFLAGS = @AUTOCONFFLAGS@
-AUTOCONFINCFLAGS = @AUTOCONFINCFLAGS@
-AUTOHEADER = @AUTOHEADER@
-AUTOHEADERFLAGS = @AUTOHEADERFLAGS@
+AUTOCONF = autoconf
+AUTOCONFFLAGS =
+AUTOHEADER = autoheader
+AUTOHEADERFLAGS =
 
 HOST_TYPE = @HOST_TYPE@
 SHEXT = @SHEXT@