summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2004-04-28 22:26:18 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2004-04-28 22:26:18 +0000
commit8b88b4e66c95da801a57767be8ebf27a4c21b30b (patch)
tree9e726e0ada4b84c82e6e6019b66f736af1335b02
parent23b307053f0fec1965d5d85b017a03916161fafd (diff)
downloadlibapr-8b88b4e66c95da801a57767be8ebf27a4c21b30b.tar.gz
Fix the XLFLAGS define in the NetWare makefiles so that the contents are added to the _link.opt file rather than the _link.def file
Submitted by: Guenter Knauf, Brad Nicholes git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@65081 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--build/NWGNUtail.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/build/NWGNUtail.inc b/build/NWGNUtail.inc
index ad3cd4ac6..0ed83289e 100644
--- a/build/NWGNUtail.inc
+++ b/build/NWGNUtail.inc
@@ -253,6 +253,9 @@ endif
ifneq "$(NLM_FLAGS)" ""
@echo -flags $(NLM_FLAGS) >> $@
endif
+ifneq "$(strip $(XLFLAGS))" ""
+ @echo $(XLFLAGS) >> $@
+endif
ifneq "$(strip $(FILES_nlm_objs))" ""
@echo $(foreach objfile,$(strip $(FILES_nlm_objs)),$(subst /,\,$(objfile))) >> $@
endif
@@ -275,9 +278,6 @@ endif
ifneq "$(FILES_nlm_exports)" ""
@echo Export $(foreach export,$(subst $(SPACE),$(COMMA),$(strip $(FILES_nlm_exports))),$(subst /,\,$(export))) >> $(OBJDIR)\$(NLM_NAME)_link.def
endif
-ifneq "$(strip $(XLFLAGS))" ""
- @echo $(XLFLAGS) >> $(OBJDIR)\$(NLM_NAME)_link.def
-endif
# if APACHE_UNIPROC is defined, don't include XDCData
ifndef APACHE_UNIPROC