User: starksm
Date: 01/04/17 20:18:08
Modified: tomcat/src/build build.bat build.sh build.xml
Log:
Change jboss.home & tomcat.home to jboss.dist & tomcat.dist
Add fixcrlf task for the *.bat files
Revision Changes Path
1.4 +1 -1 contrib/tomcat/src/build/build.bat
Index: build.bat
===================================================================
RCS file: /cvsroot/jboss/contrib/tomcat/src/build/build.bat,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.bat 2001/03/25 09:30:48 1.3
+++ build.bat 2001/04/18 03:18:08 1.4
@@ -18,4 +18,4 @@
set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\lib\crimson.jar
set CLASSPATH=%CLASSPATH%;%JBOSS_HOME%\lib\jaxp.jar
-java -Dtomcat.home=%TOMCAT_HOME% -Djboss.home=%JBOSS_HOME% -classpath "%CLASSPATH%"
org.apache.tools.ant.Main %1 %2 %3 %4 %5
+java -Dtomcat.dist=%TOMCAT_HOME% -Djboss.dist=%JBOSS_HOME% -classpath "%CLASSPATH%"
org.apache.tools.ant.Main %1 %2 %3 %4 %5
1.6 +1 -1 contrib/tomcat/src/build/build.sh
Index: build.sh
===================================================================
RCS file: /cvsroot/jboss/contrib/tomcat/src/build/build.sh,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- build.sh 2001/03/25 09:30:48 1.5
+++ build.sh 2001/04/18 03:18:08 1.6
@@ -18,5 +18,5 @@
CLASSPATH=$CLASSPATH:$JBOSS_HOME/lib/crimson.jar
CLASSPATH=$CLASSPATH:$JBOSS_HOME/lib/jaxp.jar
-java -Dtomcat.home="$TOMCAT_HOME" -Djboss.home="$JBOSS_HOME" -classpath
"$CLASSPATH" org.apache.tools.ant.Main $*
+java -Dtomcat.dist="$TOMCAT_HOME" -Djboss.dist="$JBOSS_HOME" -classpath
"$CLASSPATH" org.apache.tools.ant.Main $*
1.10 +9 -1 contrib/tomcat/src/build/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/contrib/tomcat/src/build/build.xml,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- build.xml 2001/04/18 02:43:21 1.9
+++ build.xml 2001/04/18 03:18:08 1.10
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" ?>
-<!-- $Id: build.xml,v 1.9 2001/04/18 02:43:21 starksm Exp $ -->
+<!-- $Id: build.xml,v 1.10 2001/04/18 03:18:08 starksm Exp $ -->
<!-- An Ant build file for the tomcat-service jar and the
JBoss/Tomcat bundle. The buildfile requires a JBoss dist
@@ -112,10 +112,18 @@
originalfile="${bundle.root}/tomcat/conf/server.xml" />
<fixcrlf srcdir="${bundle.root}/jboss/bin" cr="remove" eof="remove"
includes="*.sh" />
+ <chmod dir="${bundle.root}/jboss/bin" perm="ugo+rx" includes="*.sh" />
+ <fixcrlf srcdir="${bundle.root}/jboss/bin" cr="add" eof="remove"
+ includes="*.bat" />
</target>
<target name="bundle.zip" depends="bundle">
<zip zipfile="${bundle.name}.zip" basedir="${bundle.dir}" />
+ </target>
+
+ <target name="bundle.tgz" depends="bundle">
+ <tar tarfile="${bundle.name}.tar" basedir="${bundle.dir}" />
+ <gzip src="${bundle.name}.tar" zipfile="${bundle.name}.tgz" />
</target>
<!-- =================================================================== -->
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-development