From: William King Date: Tue, 19 Apr 2016 04:32:13 +0000 (-0700) Subject: FS-9081 Correction to e8f83d0 X-Git-Tag: v1.6.8~5^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1b9fda720a462a25254d53da366fe06a91a1e24e;p=thirdparty%2Ffreeswitch.git FS-9081 Correction to e8f83d0 --- diff --git a/debian/util.sh b/debian/util.sh index b5a10e3f94..b961ad0968 100755 --- a/debian/util.sh +++ b/debian/util.sh @@ -260,7 +260,7 @@ get_sources () { prefix=`echo $distro | awk -F/ '{print $1}'` suffix="`echo $distro | awk -F/ '{print $2}'`" if test -n "$suffix" ; then full="$tgt_distro/$suffix" ; else full="$tgt_distro" ; fi - if [ "$distro" == "trusty" -a "$components" == "main" ] ; then components="main universe"; echo "Forcing components to include universe"; fi + if [ "$distro" == "trusty" -a "$components" == "main" ] ; then components="main universe"; fi printf "$type $path $full $components\n" done < "$2" }