From: Bradley Nicholes Date: Wed, 18 Dec 2002 16:06:40 +0000 (+0000) Subject: Makefile fix for building IPV6. This stops the makefile from recursively creating X-Git-Tag: pre_ajp_proxy~2392 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a3845ddbdf75841833f7ea42bfec86f7bd54b6b4;p=apache Makefile fix for building IPV6. This stops the makefile from recursively creating IPV6 directories git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98009 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/build/NWGNUenvironment.inc b/build/NWGNUenvironment.inc index 8cbea7b350..a9234ff9d7 100644 --- a/build/NWGNUenvironment.inc +++ b/build/NWGNUenvironment.inc @@ -198,11 +198,16 @@ ifneq "$(IPV6)" "" DEFINES += -DNW_BUILD_IPV6 INCDIRS := $(NOVELLLIBC)\include\winsock\IPV6;$(INCDIRS) -ifneq "$(IPV6)" "SET" +ifneq "$(findstring IPV6,$(OBJDIR))" "IPV6" OBJDIR := $(OBJDIR)_IPV6 +endif + +ifneq "$(findstring IPV6,$(INSTALL))" "IPV6" INSTALL := $(INSTALL)_IPV6 +endif + +ifneq "$(findstring IPV6,$(INSTDIRS))" "IPV6" INSTDIRS := $(INSTDIRS)_IPV6 -IPV6=SET endif endif