Commit:    217020788a96781d062cf338e515b584eeb5b3a5
Author:    David Soria Parra <d...@php.net>         Mon, 12 Nov 2012 17:47:15 
+0100
Parents:   f4512d01a0020574d367cb3099984fcd0a04e8bb
Branches:  PHP-5.5

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=217020788a96781d062cf338e515b584eeb5b3a5

Log:
Build .xz archive during makedist

Changed paths:
  M  makedist


Diff:
diff --git a/makedist b/makedist
index bfc8fcc..bce40a9 100755
--- a/makedist
+++ b/makedist
@@ -119,8 +119,14 @@ tar cf $ARCHIVE php-$VER || exit 10
 bzip2 -9 $ARCHIVE || exit 11
 echo ""
 
+$ECHO_N "makedist: making xz2zipped tar archive...$ECHO_C"
+rm -f $ARCHIVE.xz
+tar cf $ARCHIVE php-$VER || exit 10
+xz -9 $ARCHIVE || exit 12
+echo ""
+
 $ECHO_N "makedist: cleaning up...$ECHO_C"
-rm -rf $DIRPATH || exit 12
+rm -rf $DIRPATH || exit 13
 echo ""
 
 exit 0


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to