diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2002-07-19 01:32:12 +0200 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2002-07-19 01:32:12 +0200 |
commit | 3947ca43b1632b06d20819ad6805b7a53605848e (patch) | |
tree | ffbf945d574ddd86254f95b3fe560cf655a82fc9 /build/NWGNUtail.inc | |
parent | A few more 'silencers' from David. (diff) | |
download | apache2-3947ca43b1632b06d20819ad6805b7a53605848e.tar.xz apache2-3947ca43b1632b06d20819ad6805b7a53605848e.zip |
Allow the makefiles to alter the screen name
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96117 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/NWGNUtail.inc')
-rw-r--r-- | build/NWGNUtail.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/NWGNUtail.inc b/build/NWGNUtail.inc index 015f197cbc..2aa3bcaca1 100644 --- a/build/NWGNUtail.inc +++ b/build/NWGNUtail.inc @@ -20,6 +20,10 @@ ifndef NLM_THREAD_NAME NLM_THREAD_NAME = $(NLM_NAME) Thread endif +ifndef NLM_SCREEN_NAME +NLM_SCREEN_NAME = Apache for NetWare +endif + # # Create dependency lists based on the files available # @@ -188,7 +192,7 @@ ifeq "$(RELEASE)" "debug" else @echo -sym internal >> $@ endif - @echo -screenname "Apache for NetWare" >> $@ + @echo -screenname "$(NLM_SCREEN_NAME)" >> $@ ifneq "$(NLM_VERSION)" "" @echo -nlmversion=$(NLM_VERSION) >> $@ else |