summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2002-08-24 09:56:51 +0000
committerDerick Rethans <derick@php.net>2002-08-24 09:56:51 +0000
commit4d283352a0b70a90e937dc6830951b871b892a2b (patch)
tree9202e2284508b76667f02c0292fae21c9b6f7760
parenta1e0e5c8591aa1a62163400dc7d82a6457d6dc59 (diff)
downloadphp-git-4d283352a0b70a90e937dc6830951b871b892a2b.tar.gz
- Also make bz2 archives
-rwxr-xr-xmakedist7
1 files changed, 6 insertions, 1 deletions
diff --git a/makedist b/makedist
index bd1956569a..92076470c8 100755
--- a/makedist
+++ b/makedist
@@ -141,8 +141,13 @@ tar cf $ARCHIVE $PKG-$VER || exit 8
gzip -9 $ARCHIVE || exit 9
echo ""
+$ECHO_N "makedist: making bz2zipped tar archive...$ECHO_C"
+tar cf $ARCHIVE $PKG-$VER || exit 10
+bzip2 -9 $ARCHIVE || exit 11
+echo ""
+
$ECHO_N "makedist: cleaning up...$ECHO_C"
-rm -rf $DIRPATH || exit 10
+rm -rf $DIRPATH || exit 12
echo ""
exit 0