summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2003-01-24 08:35:18 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2003-01-24 08:35:18 +0000
commit71e8f92b57c9a8f5fd332babac035cd70acdaa86 (patch)
treeb67ee3ba9f51227164da5cf981d8f5449447d926
parentcc61d20faae9a29422d34a367db9ac54d8de3d0e (diff)
Path fixes to modules
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@144 e03df62e-2008-0410-955e-edbf42e46eb7
-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;'`