Author: jfrederic.clere(a)jboss.com
Date: 2013-06-03 14:40:34 -0400 (Mon, 03 Jun 2013)
New Revision: 3074
Modified:
trunk/build/unix/build.sh
trunk/build/unix/buildsrc.cluster.sh
Log:
Try to use gtar as the solaris tar doesn't work with github...
Modified: trunk/build/unix/build.sh
===================================================================
--- trunk/build/unix/build.sh 2013-06-01 10:04:31 UTC (rev 3073)
+++ trunk/build/unix/build.sh 2013-06-03 18:40:34 UTC (rev 3074)
@@ -418,6 +418,11 @@
exit 1
fi
export patch
+gnutar=`util/find_gnu.sh tar`
+if [ "x" = "x${gnutar}" ];then
+ gnutar=`util/find_gnu.sh gtar`
+fi
+export gnutar
# Check for a posix tar
Modified: trunk/build/unix/buildsrc.cluster.sh
===================================================================
--- trunk/build/unix/buildsrc.cluster.sh 2013-06-01 10:04:31 UTC (rev 3073)
+++ trunk/build/unix/buildsrc.cluster.sh 2013-06-03 18:40:34 UTC (rev 3074)
@@ -71,7 +71,7 @@
if [ $USE_GIT ]; then
wget --no-check-certificate ${URLBASE}
mv $tag $tag.gz
- gzip -dc $tag.gz | tar xvf -
+ gzip -dc $tag.gz | $gnutar xvf -
mod_cluster_dir=`ls | grep modcluster-mod_cluster`
mv ${mod_cluster_dir} mod_cluster
else
Show replies by date