summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordrstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-07-20 21:04:01 +0000
committerdrstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b <drstein drstein@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864>2008-07-20 21:04:01 +0000
commit964bbfe559b7762d0feef18dda88cbdd834cdd38 (patch)
treef0d9708a7bb743ab98fde3f0694363723e806a0d
parent31125cca379486f405a162991d4a16656ed27c85 (diff)
BUILD : 1.7.21 (1404) BUGS : 917 NOTES : make install now runs install routine for modules subdirs also. Thanks Viper
git-svn-id: svn://svn.anope.org/anope/trunk@1404 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1119 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r--Changes1
-rw-r--r--src/modules/Makefile3
-rw-r--r--version.log6
3 files changed, 9 insertions, 1 deletions
diff --git a/Changes b/Changes
index c5c7fe284..8bcbc7fb2 100644
--- a/Changes
+++ b/Changes
@@ -58,6 +58,7 @@ Provided by Johno Crawford <johno.crawford@gmail.com> - 2008
02/08 F x86_64 generating improper SHA1 hash values. [#856]
Provided by Jan Milants <jan_renee@msn.com> - 2008
+07/20 F make install now runs install routine for modules subdirs also. [#917]
07/20 F Fixes weird hs_setall behaviour (memory issues). [#916]
07/20 F DEFCON was akilling ulined servers clients. [#899]
07/20 F Botserv replying with /(null). [#894]
diff --git a/src/modules/Makefile b/src/modules/Makefile
index cc9a75727..cafbe451c 100644
--- a/src/modules/Makefile
+++ b/src/modules/Makefile
@@ -17,6 +17,9 @@ modules: $(OBJECTS) $(SO_FILES)
install:
$(CP) ./*.so $(MODULE_PATH)
+ @for i in $(SUBS); do \
+ echo "make install in $$i..."; \
+ (cd $$i; $(MAKE) $(MAKEARGS) install);done
distclean: spotless
diff --git a/version.log b/version.log
index 347fe1a5f..e1e36b3af 100644
--- a/version.log
+++ b/version.log
@@ -9,10 +9,14 @@ VERSION_MAJOR="1"
VERSION_MINOR="7"
VERSION_PATCH="21"
VERSION_EXTRA="-svn"
-VERSION_BUILD="1403"
+VERSION_BUILD="1404"
# $Log$
#
+# BUILD : 1.7.21 (1404)
+# BUGS : 917
+# NOTES : make install now runs install routine for modules subdirs also. Thanks Viper
+#
# BUILD : 1.7.21 (1403)
# BUGS : 916
# NOTES : Fixes weird hs_setall behaviour (memory issues). Thanks Jan again