You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2009/09/28 19:07:51 UTC

svn commit: r819645 - /httpd/mod_fcgid/trunk/Makefile.apxs

Author: wrowe
Date: Mon Sep 28 17:07:50 2009
New Revision: 819645

URL: http://svn.apache.org/viewvc?rev=819645&view=rev
Log:
Correct httpd_conffile reparsing for DISTDIR

Modified:
    httpd/mod_fcgid/trunk/Makefile.apxs

Modified: httpd/mod_fcgid/trunk/Makefile.apxs
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/Makefile.apxs?rev=819645&r1=819644&r2=819645&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/Makefile.apxs (original)
+++ httpd/mod_fcgid/trunk/Makefile.apxs Mon Sep 28 17:07:50 2009
@@ -63,9 +63,9 @@
 	@awk -f $(fcgid_srcdir)/build/addloadexample.awk \
 		-v MODULE=fcgid -v DSO=.so -v LIBPATH=$(rel_libexecdir) \
 		-v EXAMPLECONF=$(rel_sysconfdir)/extra/httpd-fcgid.conf \
-		$(httpd_conffile) > $(httpd_conffile).new && \
-	  ( mv $(httpd_conffile) $(httpd_conffile).bak && \
-	    mv $(httpd_conffile).new $(httpd_conffile) );
+		$(DESTDIR)$(httpd_conffile) > $(DESTDIR)$(httpd_conffile).new && \
+	  ( mv $(DESTDIR)$(httpd_conffile) $(DESTDIR)$(httpd_conffile).bak && \
+	    mv $(DESTDIR)$(httpd_conffile).new $(DESTDIR)$(httpd_conffile) );
 
 svnroot=http://svn.apache.org/repos/asf/httpd
 manualdir=$(fcgid_srcdir)/docs/manual