From 6123f15e77aaec05ae061ad7926b158d4a366212 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 28 Mar 2014 09:59:32 -0400 Subject: [PATCH] Raspberry Pi builds should upload as .tar.xz instead of .tar.bz2. Makes the archive about 40-50% smaller! --- build-scripts/raspberrypi-buildbot.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-scripts/raspberrypi-buildbot.sh b/build-scripts/raspberrypi-buildbot.sh index db258347a559a..639a3a4dee8dc 100755 --- a/build-scripts/raspberrypi-buildbot.sh +++ b/build-scripts/raspberrypi-buildbot.sh @@ -12,7 +12,7 @@ TARBALL="$1" if [ -z $1 ]; then - TARBALL=sdl-raspberrypi.tar.bz2 + TARBALL=sdl-raspberrypi.tar.xz fi OSTYPE=`uname -s` @@ -51,7 +51,7 @@ mkdir -p ./usr mv ./rpi-sdl2-installed ./usr/local popd -tar -cjvvf $TARBALL -C $BUILDBOTDIR usr +tar -cJvvf $TARBALL -C $BUILDBOTDIR usr rm -rf $BUILDBOTDIR set +x