]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Revert the changes I made the issue is in the build system not in this script if...
authorBrian West <brian@freeswitch.org>
Thu, 27 Feb 2014 22:22:37 +0000 (16:22 -0600)
committerBrian West <brian@freeswitch.org>
Thu, 27 Feb 2014 22:22:37 +0000 (16:22 -0600)
build/modcheck.sh

index b0c84c8b1b4098f0b377e4396aedfea7b24ca24f..78f7c93f8531fcf13ef9da81484b3bf6ea5bca98 100644 (file)
@@ -5,9 +5,6 @@ mods=$1
 on='\e[01;00;35m'
 off='\e[0m'
 
-prefix=`cat ../config.log | grep ^prefix=\' | awk -F \' '{print $2}'`
-mods=${DESTDIR}${prefix}/mod;
-
 if [ -z $mods ] ; then
     mods="/usr/local/freeswitch/mod"
 fi
@@ -18,7 +15,7 @@ echo
 here=`pwd`
 
 cd $mods
-files=`ls mod_*.dylib mod_*.so 2>/dev/null`
+files=`ls *.dylib *.so 2>/dev/null`
 cd $here
 
 for i in $files ; do