JBoss Native SVN: r3074 - trunk/build/unix.
by jbossnative-commits@lists.jboss.org
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
11 years, 7 months
JBoss Native SVN: r3073 - trunk/build/daemon.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2013-06-01 06:04:31 -0400 (Sat, 01 Jun 2013)
New Revision: 3073
Modified:
trunk/build/daemon/buildmdc.bat
Log:
Arrange parameters...
Modified: trunk/build/daemon/buildmdc.bat
===================================================================
--- trunk/build/daemon/buildmdc.bat 2013-06-01 09:49:42 UTC (rev 3072)
+++ trunk/build/daemon/buildmdc.bat 2013-06-01 10:04:31 UTC (rev 3073)
@@ -47,10 +47,10 @@
pushd %BUILD_HOME%\windows
REM build mod_cluster bundles.
-call buildnew.bat sdk x86 mod_cluster -ssl -cache -test
-call buildnew.bat sdk x86 mod_cluster -cache -test
-call buildnew.bat sdk x64 mod_cluster -ssl -cache -test
-call buildnew.bat sdk x64 mod_cluster -cache -test
+call buildnew.bat x86 mod_cluster -ssl -cache -test
+call buildnew.bat x86 mod_cluster -cache -test
+call buildnew.bat x64 mod_cluster -ssl -cache -test
+call buildnew.bat x64 mod_cluster -cache -test
REM
REM call build.bat sdk i64 mod_cluster -ssl -cache
REM
11 years, 7 months
JBoss Native SVN: r3072 - trunk/build/daemon.
by jbossnative-commits@lists.jboss.org
Author: jfrederic.clere(a)jboss.com
Date: 2013-06-01 05:49:42 -0400 (Sat, 01 Jun 2013)
New Revision: 3072
Modified:
trunk/build/daemon/buildmdc.bat
Log:
Try to use the buildnew.bat (the old has a broken env now).
Modified: trunk/build/daemon/buildmdc.bat
===================================================================
--- trunk/build/daemon/buildmdc.bat 2013-05-31 14:41:26 UTC (rev 3071)
+++ trunk/build/daemon/buildmdc.bat 2013-06-01 09:49:42 UTC (rev 3072)
@@ -47,10 +47,10 @@
pushd %BUILD_HOME%\windows
REM build mod_cluster bundles.
-call build.bat sdk x86 mod_cluster -ssl -cache -test
-call build.bat sdk x86 mod_cluster -cache -test
-call build.bat sdk x64 mod_cluster -ssl -cache -test
-call build.bat sdk x64 mod_cluster -cache -test
+call buildnew.bat sdk x86 mod_cluster -ssl -cache -test
+call buildnew.bat sdk x86 mod_cluster -cache -test
+call buildnew.bat sdk x64 mod_cluster -ssl -cache -test
+call buildnew.bat sdk x64 mod_cluster -cache -test
REM
REM call build.bat sdk i64 mod_cluster -ssl -cache
REM
11 years, 7 months