From: Jim Jagielski Date: Fri, 12 Jan 2001 04:08:51 +0000 (+0000) Subject: Avoid confusion at times when someone may X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=633f49f13a2701991e0831a366337ad3db914f35;p=apache Avoid confusion at times when someone may expect it to be reapplied, but it isn't git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87665 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/hints.m4 b/hints.m4 index 93b5a32539..806de3451c 100644 --- a/hints.m4 +++ b/hints.m4 @@ -5,7 +5,12 @@ dnl Preload various ENV/makefile paramsm such as CC, CFLAGS, etc dnl based on outside knowledge dnl AC_DEFUN(APACHE_PRELOAD, [ -if test "$DID_APACHE_PRELOAD" != "yes" ; then +if test "$DID_APACHE_PRELOAD" == "yes" ; then + + echo "Apache hints file rules for $host already applied" + +else + DID_APACHE_PRELOAD="yes"; export DID_APACHE_PRELOAD echo "Applying Apache hints file rules for $host"