From: Michael Jerris Date: Mon, 7 Jan 2008 08:32:43 +0000 (+0000) Subject: fix untar of sounds on non linux (FSBUILD-31) X-Git-Tag: v1.0-rc1~783 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3ca7ab1397d8b1712ad944486ce2a0fe2cfebd10;p=thirdparty%2Ffreeswitch.git fix untar of sounds on non linux (FSBUILD-31) git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7117 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/build/getsounds.sh.in b/build/getsounds.sh.in index e2384da4e5..27332bf48c 100755 --- a/build/getsounds.sh.in +++ b/build/getsounds.sh.in @@ -29,7 +29,7 @@ fi if [ ! -z $install ] ; then test -d $install || mkdir $install - cd $install && $ZCAT -c -d $DIR/$tarfile | $TAR x + cd $install && $ZCAT -c -d $DIR/$tarfile | $TAR xf - fi exit 0