diff options
author | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-06 14:14:55 +0000 |
---|---|---|
committer | rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b <rob rob@31f1291d-b8d6-0310-a050-a5561fc1590b@5417fbe8-f217-4b02-8779-1006273d7864> | 2005-03-06 14:14:55 +0000 |
commit | cd81294abfbab9d5ba070938265b0ac21cc15241 (patch) | |
tree | 0cb2824e370d2f37d302f6e76442c3bbc510bd82 | |
parent | e0b79e1552b7dd23a5126b8aed58f7c3a5222999 (diff) |
BUILD : 1.7.8 (601) BUGS : N/A NOTES : Only module subfolders which contain Makefiles will be compiled on nix
git-svn-id: svn://svn.anope.org/anope/trunk@601 31f1291d-b8d6-0310-a050-a5561fc1590b
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@449 5417fbe8-f217-4b02-8779-1006273d7864
-rwxr-xr-x | src/modules/configure | 14 | ||||
-rw-r--r-- | version.log | 6 |
2 files changed, 13 insertions, 7 deletions
diff --git a/src/modules/configure b/src/modules/configure index e2a6efd74..119c7c887 100755 --- a/src/modules/configure +++ b/src/modules/configure @@ -19,13 +19,15 @@ FIRST=1 for dir in * do if [ -d $dir ] ; then - if [ "$FIRST" = 1 ] ; then - echo -n " "$dir >> ./Makefile.inc - else - echo "\\" >> ./Makefile.inc - echo -n " " $dir >> ./Makefile.inc + if [ -f $dir/Makefile ] ; then + if [ "$FIRST" = 1 ] ; then + echo -n " "$dir >> ./Makefile.inc + else + echo "\\" >> ./Makefile.inc + echo -n " " $dir >> ./Makefile.inc + fi + FIRST=0 fi - FIRST=0 fi done diff --git a/version.log b/version.log index 0c95f9da5..92e77a8d5 100644 --- a/version.log +++ b/version.log @@ -8,10 +8,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="8" -VERSION_BUILD="600" +VERSION_BUILD="601" # $Log$ # +# BUILD : 1.7.8 (601) +# BUGS : N/A +# NOTES : Only module subfolders which contain Makefiles will be compiled on nix +# # BUILD : 1.7.8 (600) # BUGS : N/A # NOTES : Added UPDATE to the ns help menu |