Author: tom.baeyens(a)jboss.com
Date: 2009-08-25 03:19:01 -0400 (Tue, 25 Aug 2009)
New Revision: 5526
Modified:
jbpm4/trunk/modules/distro/src/main/files/install/build.xml
Log:
added wildcard to chmod +x to include setclasspath.sh in tomcat installation script
Modified: jbpm4/trunk/modules/distro/src/main/files/install/build.xml
===================================================================
--- jbpm4/trunk/modules/distro/src/main/files/install/build.xml 2009-08-25 07:16:44 UTC
(rev 5525)
+++ jbpm4/trunk/modules/distro/src/main/files/install/build.xml 2009-08-25 07:19:01 UTC
(rev 5526)
@@ -288,9 +288,11 @@
depends="get.tomcat"
description="Downloads tomcat to ${tomcat.distro.dir} if its not available
and then unzips tomcat">
<unzip src="${tomcat.distro.path}" dest="${tomcat.parent.dir}"
/>
- <chmod perm="a+x" file="${tomcat.home}/bin/catalina.sh"
os="Linux, Mac OS X" />
- <chmod perm="a+x" file="${tomcat.home}/bin/startup.sh"
os="Linux, Mac OS X" />
- <chmod perm="a+x" file="${tomcat.home}/bin/shutdown.sh"
os="Linux, Mac OS X" />
+ <chmod perm="a+x" os="Linux, Mac OS X">
+ <fileset dir="${tomcat.home}/bin">
+ <include name="*.sh" />
+ </fileset>
+ </chmod>
</target>
<!-- ### GET TOMCAT ###################################################### -->
Show replies by date