summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmakeconf2
1 files changed, 1 insertions, 1 deletions
diff --git a/makeconf b/makeconf
index 7df9226bc..22cba9668 100755
--- a/makeconf
+++ b/makeconf
@@ -576,7 +576,7 @@ echo ""
echo "The Following Modules are avaliable:"
echo ""
MODLINE=""
-for module in m_*.cpp ; do
+for module in src/modules/*.cpp ; do
mod=`perl -e '$a='$module';print substr($a,0,length($a)-3)'`
dmod=`perl -e '$a="'$mod.so'";while (length($a)<30) { $a = "$a ";}; print $a;'`
desc=`perl -e 'open (F, "<'$module'");local($/)=undef;$blah=<F>;$blah=~/\$ModDesc(.*)\*\//;print substr($1,13,length($1));close F;'`