remm 01/11/21 10:24:05 Modified: . build.xml Log: - Make it possible to run the installer target separately. - Improve the condition (no need for full.dist + won't be run without NSIS) Revision Changes Path 1.52 +2 -2 jakarta-tomcat-4.0/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/build.xml,v retrieving revision 1.51 retrieving revision 1.52 diff -u -r1.51 -r1.52 --- build.xml 2001/11/13 16:57:21 1.51 +++ build.xml 2001/11/21 18:24:05 1.52 @@ -214,7 +214,7 @@ <!-- ================= DIST: Create Windows Installer =================== --> - <target name="installer" depends="dist, dist-source" + <target name="installer" depends="dist, dist-source, prepare-release" description="Create Windows installer" if="execute.installer"> <echo message="Builds a Windows installer based on Nullsoft Installer"/> <echo message="NSIS must be installed in the default directory"/> @@ -270,9 +270,9 @@ <target name="prepare-release"> <condition property="execute.installer"> <and> - <equals arg1="${full.dist}" arg2="on" /> <os family="windows" /> <available file="${javaservice.home}/bin/JavaService.exe" /> + <available file="${nsis.home}\makensis.exe" /> </and> </condition> </target>
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>