From b3bd2ed48cab626c9a672cb1c9cf3182b7f7a659 Mon Sep 17 00:00:00 2001 From: "William A. Rowe Jr" Date: Wed, 27 Feb 2002 17:41:34 +0000 Subject: [PATCH] This baffled .mak exported build targets for mod_ssl/abs. They will recognize their output only as .\Release|Debug\mod_ssl.so, etc. Without the leading .\ kept getting 'dunno how to make ... target' git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93602 13f79535-47bb-0310-9956-ffa450edef68 --- Makefile.win | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.win b/Makefile.win index 671909c8567..01bc6c8858a 100644 --- a/Makefile.win +++ b/Makefile.win @@ -55,10 +55,10 @@ SSLBIN=out32dll _tryssl: !IF EXIST("modules\ssl\mod_ssl.mak") cd modules\ssl - $(MAKE) $(MAKEOPT) -f mod_ssl.mak CFG="mod_ssl - Win32 $(LONG)" RECURSE=0 $(LONG)\mod_ssl.so + $(MAKE) $(MAKEOPT) -f mod_ssl.mak CFG="mod_ssl - Win32 $(LONG)" RECURSE=0 .\$(LONG)\mod_ssl.so cd ..\.. cd support - $(MAKE) $(MAKEOPT) -f abs.mak CFG="abs - Win32 $(LONG)" RECURSE=0 $(LONG)\abs.exe + $(MAKE) $(MAKEOPT) -f abs.mak CFG="abs - Win32 $(LONG)" RECURSE=0 .\$(LONG)\abs.exe cd .. !ELSE msdev Apache.dsw /USEENV /MAKE \ -- 2.47.2