From 3ca7ab1397d8b1712ad944486ce2a0fe2cfebd10 Mon Sep 17 00:00:00 2001 From: Michael Jerris Date: Mon, 7 Jan 2008 08:32:43 +0000 Subject: [PATCH] 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 --- build/getsounds.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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