From: <jbo...@li...> - 2006-05-30 17:11:59
|
Author: jfr...@jb... Date: 2006-05-30 13:11:53 -0400 (Tue, 30 May 2006) New Revision: 4486 Modified: labs/jbossweb/trunk/src/share/native/build/buildphp.sh Log: build the compress tarfile in 2 steps. The Solaris tar does not like the z option. Modified: labs/jbossweb/trunk/src/share/native/build/buildphp.sh =================================================================== --- labs/jbossweb/trunk/src/share/native/build/buildphp.sh 2006-05-30 16:11:54 UTC (rev 4485) +++ labs/jbossweb/trunk/src/share/native/build/buildphp.sh 2006-05-30 17:11:53 UTC (rev 4486) @@ -479,6 +479,9 @@ # # Build a tarball with the all stuff (cd $TOOLS/ - tar zcvf php5servlet.tar.gz PHP/lib webapps + rm -f php5servlet.tar.gz + rm -f php5servlet.tar + tar cvf php5servlet.tar PHP/lib webapps + gzip -9 php5servlet.tar ) |