From 0293d5840671fd6edb74665d57cab224b6870e15 Mon Sep 17 00:00:00 2001 From: Brian West Date: Fri, 20 Jun 2014 10:18:10 -0500 Subject: [PATCH] Exclude ftmod_ as those are submodules of mod_freetdm --- build/modcheck.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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}"