summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-05 22:00:30 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-05 22:00:30 -0400
commitdbe7ecb07c190a554d2b3953c348cd3965d173a7 (patch)
treeb50c76ff0f4b05e3beec62dfff710c439ec28198
parentcd0d68a591ee64bb0e85d9a364af9fe6abdeecbe (diff)
add -L to curl in linux build script so that 301 responses while fetching harvid are handled
-rwxr-xr-xtools/linux_packaging/build2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 3962ce65cd..af795f8983 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -532,7 +532,7 @@ done
if test x$WITH_HARVID != x ; then
cd $APPBIN
HARVID_VERSION="v0.7.0" # todo make 'latest' symlink on github work somehow.
- curl http://x42.github.com/harvid/releases/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
+ curl -L http://x42.github.com/harvid/releases/harvid-${MULTIARCH}-${HARVID_VERSION}.tgz \
| tar -x -z --exclude=README --exclude=harvid.1 --strip-components=1 || exit 1
cd -
fi