From: Brian West Date: Fri, 20 Jun 2014 15:18:10 +0000 (-0500) Subject: Exclude ftmod_ as those are submodules of mod_freetdm X-Git-Tag: v1.5.13~114 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0293d5840671fd6edb74665d57cab224b6870e15;p=thirdparty%2Ffreeswitch.git Exclude ftmod_ as those are submodules of mod_freetdm --- diff --git a/build/modcheck.sh b/build/modcheck.sh index 78f7c93f85..5df91f7e97 100644 --- a/build/modcheck.sh +++ b/build/modcheck.sh @@ -15,14 +15,14 @@ echo here=`pwd` cd $mods -files=`ls *.dylib *.so 2>/dev/null` +files=`ls *.so 2>/dev/null` cd $here for i in $files ; do mod=${i%%.*} - infile=`grep ^.*$mod\$ ../modules.conf` - commented=`grep ^\#.*$mod\$ ../modules.conf` + infile=`grep ^.*$mod\$ ../modules.conf | grep -v ftmod_` + commented=`grep ^\#.*$mod\$ ../modules.conf | grep -v ftmod_` if [ -z "$infile" ] ; then echo "${on}WARNING: installed module: $i was not installed by this build. It is not present in modules.conf.${off}"