change gettext-tarball-existance test to use .gz not .xz, since the

download/unpack use gz (and gz is more portable than xz)
master
don bright 2014-06-02 16:14:13 -07:00
parent eb45f9bc36
commit 19d3ba0d96
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ build_gettext()
echo "Building gettext $version..."
cd "$BASEDIR"/src
rm -rf "gettext-$version"
if [ ! -f "gettext-$version.tar.xz" ]; then
if [ ! -f "gettext-$version.tar.gz" ]; then
curl --insecure -LO "http://ftpmirror.gnu.org/gettext/gettext-$version.tar.gz"
fi
tar xzf "gettext-$version.tar.gz"