diff options
author | Guenter Knauf <fuankg@apache.org> | 2011-03-08 17:11:33 +0100 |
---|---|---|
committer | Guenter Knauf <fuankg@apache.org> | 2011-03-08 17:11:33 +0100 |
commit | 27a593f43a5d25c90df12076c43460f4d8378e02 (patch) | |
tree | 367586ef2e73a40b6e059846c056c2528277c293 /build | |
parent | NetWare build overhaul in order to compile on Linux. (diff) | |
download | apache2-27a593f43a5d25c90df12076c43460f4d8378e02.tar.xz apache2-27a593f43a5d25c90df12076c43460f4d8378e02.zip |
NetWare build overhaul in order to compile on Linux.
Fixed error with sed replacement.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1079410 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build')
-rw-r--r-- | build/NWGNUtail.inc | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/build/NWGNUtail.inc b/build/NWGNUtail.inc index 483a86d7e2..f63b5409b5 100644 --- a/build/NWGNUtail.inc +++ b/build/NWGNUtail.inc @@ -35,12 +35,12 @@ ifeq "$(NLM_STACK_SIZE)" "" NLM_STACK_SIZE = 65536 endif -ifeq "$(NLM_ENTRY_SYM = -NLM_ENTRY_SYM = +ifeq "$(NLM_ENTRY_SYM)" "" +NLM_ENTRY_SYM = _LibCPrelude endif -ifeq "$(NLM_EXIT_SYM = -NLM_EXIT_SYM = +ifeq "$(NLM_EXIT_SYM)" "" +NLM_EXIT_SYM = _LibCPostlude endif # @@ -293,8 +293,8 @@ ifneq "$(NLM_VERSION)" "" else @echo $(DL)version $(VERSION)$(DL)>> $(@:.opt=.def) endif - @echo $(DL)start $(NLM_ENTRY_SYM = - @echo $(DL)exit $(NLM_EXIT_SYM = + @echo $(DL)start $(NLM_ENTRY_SYM)$(DL)>> $(@:.opt=.def) + @echo $(DL)exit $(NLM_EXIT_SYM)$(DL)>> $(@:.opt=.def) ifneq "$(NLM_CHECK_SYM)" "" @echo $(DL)check $(NLM_CHECK_SYM)$(DL)>> $(@:.opt=.def) endif |