From d961ce5b238568e29cc3a114a7d663e5f040f56e Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Wed, 18 Dec 2002 16:06:40 +0000 Subject: [PATCH] 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 --- build/NWGNUenvironment.inc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) 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 -- 2.50.1