From 5a3c9881def4cbdec865d823f3fafbddcd10a0ae Mon Sep 17 00:00:00 2001 From: Ezra Peisach Date: Tue, 7 Aug 2001 21:47:36 +0000 Subject: [PATCH] * post.in (all-recurse clean-recurse distclean-recurse install-recurse check-recurse Makefiles-recurse): Do not pass down CC and CCOPTS to subdirs. This causes automatic reconfiguration to fail with autoconf 2.52 where config.status is invoked with different environment variables. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13676 dc483132-0cff-0310-8789-dd5450dbe970 --- src/config/ChangeLog | 8 ++++++++ src/config/post.in | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/config/ChangeLog b/src/config/ChangeLog index 6e6723c92..1471def05 100644 --- a/src/config/ChangeLog +++ b/src/config/ChangeLog @@ -1,3 +1,11 @@ +2001-08-07 Ezra Peisach + + * post.in (all-recurse clean-recurse distclean-recurse + install-recurse check-recurse Makefiles-recurse): Do not pass down + CC and CCOPTS to subdirs. This causes automatic reconfiguration to + fail with autoconf 2.52 where config.status is invoked with + different environment variables. + 2001-07024 Jeffrey Altman * win-pre.in: the proper #define is KRB5_DNS_LOOKUP_REALM diff --git a/src/config/post.in b/src/config/post.in index 22926d7fe..e0ea7213d 100644 --- a/src/config/post.in +++ b/src/config/post.in @@ -66,7 +66,7 @@ all-recurse clean-recurse distclean-recurse install-recurse check-recurse Makefi case $$i in .);; *) \ target=`echo $@|sed s/-recurse//`; \ echo "making $$target in $(CURRENT_DIR)$$i..."; \ - if (cd $$i ; $(MAKE) CC="$(CC)" CCOPTS="$(CCOPTS)" \ + if (cd $$i ; $(MAKE) \ CURRENT_DIR=$(CURRENT_DIR)$$i/ $$target) then :; \ else eval $$e; fi; \ ;; \ -- 2.26.2