[gegl-qt] Build: Use more common options for tar



commit dc4a384430f96bb1e4b236b889d91172123e427e
Author: Jon Nordby <jononor gmail com>
Date:   Sat Aug 27 14:09:04 2011 +0200

    Build: Use more common options for tar

 gegl-qt.pro |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/gegl-qt.pro b/gegl-qt.pro
index a31d8a4..7bc2432 100644
--- a/gegl-qt.pro
+++ b/gegl-qt.pro
@@ -23,7 +23,7 @@ QMAKE_EXTRA_TARGETS += dist
 dist.target = dist
 dist.commands += git clone $$IN_PWD $$DIST_PATH;
 dist.commands += cd $$OUT_PWD;
-dist.commands += tar -caf $$DIST_NAME\\.tar.xz $$DIST_NAME;
+dist.commands += tar --bzip2 -cf $$DIST_NAME\\.tar.bz2 $$DIST_NAME;
 
 # The 'make distcheck' target
 # Creates a tarball release, extracts it, builds, runs tests and installs
@@ -32,7 +32,7 @@ distcheck.target = distcheck
 distcheck.depends += dist;
 distcheck.commands += mkdir -p $$OUT_PWD/distcheck-build;
 distcheck.commands += cd $$OUT_PWD/distcheck-build;
-distcheck.commands += tar -xf $$DIST_PATH\\.tar.xz;
+distcheck.commands += tar -xf $$DIST_PATH\\.tar.bz2;
 distcheck.commands += cd $$DIST_NAME;
 distcheck.commands += qmake -r GEGLQT_INSTALL_PRIVATE_HEADERS=yes GEGLQT_INSTALL_PREFIX=$$OUT_PWD/distcheck-install;
 distcheck.commands += make -j4;
@@ -47,7 +47,7 @@ intcheck.target = intcheck
 intcheck.depends += distcheck;
 intcheck.commands += mkdir -p $$OUT_PWD/intcheck-build;
 intcheck.commands += cd $$OUT_PWD/intcheck-build;
-intcheck.commands += tar -xf $$DIST_PATH\\.tar.xz;
+intcheck.commands += tar -xf $$DIST_PATH\\.tar.bz2;
 intcheck.commands += cd $$DIST_NAME;
 intcheck.commands += PKG_CONFIG_PATH=$$OUT_PWD/distcheck-install/lib/pkgconfig \
     qmake -r GEGLQT_INTEGRATION_CHECK=yes;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]