summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xsrc/modules/configure14
-rw-r--r--version.log6
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