pre.in: Define AUTOCONF and CONFIG_RELTOPDIR from the autoconf
authorTheodore Tso <tytso@mit.edu>
Mon, 2 Mar 1998 03:28:15 +0000 (03:28 +0000)
committerTheodore Tso <tytso@mit.edu>
Mon, 2 Mar 1998 03:28:15 +0000 (03:28 +0000)
substitution macros.

post.in: Fix the call to autoconf to use $(AUTOCONF) and
$(CONFIG_RELTOPDIR), so that configure regeneration rule works
even in a subdirectory below the configure script.

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

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

index fca25b50cbcae99797ef5737ba51a993b76fa6f7..2f5d63ab0606584f0c65d6905ec9ea56c3660d80 100644 (file)
@@ -1,3 +1,12 @@
+Sun Mar  1 22:25:34 1998  Theodore Ts'o  <tytso@rsts-11.mit.edu>
+
+       * pre.in: Define AUTOCONF and CONFIG_RELTOPDIR from the autoconf
+               substitution macros.
+
+       * post.in: Fix the call to autoconf to use $(AUTOCONF) and
+               $(CONFIG_RELTOPDIR), so that configure regeneration rule
+               works even in a subdirectory below the configure script.
+
 Wed Feb 18 17:31:52 1998  Tom Yu  <tlyu@mit.edu>
 
        * windows.in: Rewrite some of the directory syntax.
index fef53e46e9989d707e4c3efdb49863142402da03..88154b267126adc154ab8f7c426f8038b334172e 100644 (file)
@@ -49,9 +49,8 @@ $(thisconfigdir)/config.status: $(srcdir)/$(thisconfigdir)/configure
 $(srcdir)/$(thisconfigdir)/configure: $(srcdir)/$(thisconfigdir)/configure.in \
                $(SRCTOP)/aclocal.m4
        cd $(srcdir)/$(thisconfigdir) && \
-               $(SHELL) $(SRCTOP)/util/autoconf/autoconf \
-                       --localdir=$(BUILDTOP) \
-                       --macrodir=$(BUILDTOP)/util/autoconf
+               $(SHELL) $(AUTOCONF) --localdir=$(CONFIG_RELTOPDIR) \
+                       --macrodir=$(CONFIG_RELTOPDIR)/util/autoconf
 
 all-recurse clean-recurse distclean-recurse install-recurse check-recurse Makefiles-recurse:
        @case "`echo 'x$(MFLAGS)'|sed -e 's/^x//' -e 's/ --.*$$//'`" \
index c8fca5b0896c59e763109e6400df69b29e18419e..1002ead15092016e2a461a666e95ebd25c0c5c7b 100644 (file)
@@ -68,6 +68,7 @@ SUBDIRS = @subdirs@ $(LOCAL_SUBDIRS)
 srcdir = @srcdir@
 SRCTOP = @srcdir@/$(BUILDTOP)
 VPATH = @srcdir@
+CONFIG_RELTOPDIR = @CONFIG_RELTOPDIR@
 
 CPPFLAGS = @CPPFLAGS@
 DEFS = @DEFS@ $(CPPFLAGS)
@@ -161,6 +162,7 @@ AWK = @AWK@
 LEX = @LEX@
 LEXLIB = @LEXLIB@
 YACC = @YACC@
+AUTOCONF = @AUTOCONF@
 
 HOST_TYPE = @HOST_TYPE@
 SHEXT = @SHEXT@