Author: bnicholes
Date: Mon Oct 17 08:47:32 2005
New Revision: 325916
URL: http://svn.apache.org/viewcvs?rev=325916&view=rev
Log:
Fix up the NetWare make files after some of the module moved out of experimental
Modified:
httpd/httpd/branches/2.2.x/modules/experimental/NWGNUmakefile
httpd/httpd/branches/2.2.x/modules/filters/NWGNUmakefile
Modified: httpd/httpd/branches/2.2.x/modules/experimental/NWGNUmakefile
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/modules/experimental/NWGNUmakefile?rev=325916&r1=325915&r2=325916&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/experimental/NWGNUmakefile (original)
+++ httpd/httpd/branches/2.2.x/modules/experimental/NWGNUmakefile Mon Oct 17 08:47:32 2005
@@ -151,7 +151,16 @@
#
# If there is an NLM target, put it here
#
+# We are referencing example.nlm twice to get around a known issue with the
+# makefiles. Normally if there is only one element to be built within a
+# directory, the makefile for the single element would be called NWGNUmakefile.
+# But if there are multiples, the parent NWGNUmakefile must reference more
+# than one submakefile. Because the experimental directory might vary in the
+# number of submakefiles, but for the moment only contains one, we reference
+# it twice to allow it parent NWGNUmakefile to work properly. If another
+# submakefile is added, the extra reference to example.nlm should be removed.
TARGET_nlm = \
+ $(OBJDIR)/example.nlm \
$(OBJDIR)/example.nlm \
$(EOLIST)
Modified: httpd/httpd/branches/2.2.x/modules/filters/NWGNUmakefile
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/2.2.x/modules/filters/NWGNUmakefile?rev=325916&r1=325915&r2=325916&view=diff
==============================================================================
--- httpd/httpd/branches/2.2.x/modules/filters/NWGNUmakefile (original)
+++ httpd/httpd/branches/2.2.x/modules/filters/NWGNUmakefile Mon Oct 17 08:47:32 2005
@@ -163,9 +163,6 @@
TARGET_nlm += $(OBJDIR)/deflate.nlm \
$(EOLIST)
endif
-else
-TARGET_nlm += $(OBJDIR)/extfiltr.nlm \
- $(EOLIST)
endif
#
|