From 65feb70587d438b7ff0459d8995ee34266f1a08e Mon Sep 17 00:00:00 2001 From: Greg Ames Date: Tue, 29 Aug 2000 15:59:59 +0000 Subject: [PATCH] If the src/apachecore.dll and src/apachecore.x files exist, copy them to the install bin directory during "make install". Used for OS/390 dso builds. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86158 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile.in b/Makefile.in index a32c181b6f..b3375433ad 100644 --- a/Makefile.in +++ b/Makefile.in @@ -78,6 +78,12 @@ install-support: install-other: @test -d $(logdir) || $(MKINSTALLDIRS) $(logdir) + @for ext in dll x; do \ + file=apachecore.$$ext; \ + if test -f $$file; then \ + cp -p $$file $(bindir); \ + fi; \ + done; install-include: @echo Installing header files -- 2.50.1