From: William A. Rowe Jr Date: Fri, 16 May 2003 16:01:25 +0000 (+0000) Subject: Fix a VPATH build install bug - the special.mk file was never installed X-Git-Tag: pre_ajp_proxy~1690 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=223cc021abc3ab7060a85575fd11270f6e4b5498;p=thirdparty%2Fapache%2Fhttpd.git Fix a VPATH build install bug - the special.mk file was never installed (because we didn't rewrite it to the VPATH from the sourcepath), so copy any sourcepath\build\*.mk files along with the vpath\build\*.mk files. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@99862 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index c2f9d703eda..c74fe5799ed 100644 --- a/Makefile.in +++ b/Makefile.in @@ -91,6 +91,7 @@ install-conf: install-build: @echo Installing build system files @test -d $(DESTDIR)$(installbuilddir) || $(MKINSTALLDIRS) $(DESTDIR)$(installbuilddir) + @cp $(top_srcdir)/build/*.mk $(DESTDIR)$(installbuilddir); \ @cp build/*.mk $(DESTDIR)$(installbuilddir); \ sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \ build/config_vars.mk > $(DESTDIR)$(installbuilddir)/config_vars.mk; \