mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-11 07:22:22 +00:00
9216cabdbe
PR: ports/116465 Submitted by: Sebastian Mindling <dev at mindling.com> Approved by: Jonathan Chen <jonc at chen.org.nz> (maintainer)
46 lines
1.6 KiB
Plaintext
46 lines
1.6 KiB
Plaintext
$FreeBSD$
|
|
|
|
These patches disables the ant version checks.
|
|
|
|
diff -ruN /tmp/jboss-4.2.1.GA-src/tools/etc/buildmagic/build-common.xml ./tools/etc/buildmagic/build-common.xml
|
|
--- /tmp/jboss-4.2.1.GA-src/tools/etc/buildmagic/build-common.xml Sat May 12 06:24:27 2007
|
|
+++ ./tools/etc/buildmagic/build-common.xml Tue Jun 19 13:56:11 2007
|
|
@@ -9,10 +9,12 @@
|
|
-->
|
|
|
|
<condition property="buildmagic.ant.compatible">
|
|
+ <!--
|
|
<or>
|
|
<contains string="${ant.version}"
|
|
substring="Ant version ${buildmagic.ant16.baseversion}"/>
|
|
</or>
|
|
+ -->
|
|
</condition>
|
|
|
|
<fail unless="buildmagic.ant.compatible">
|
|
diff -ruN /tmp/jboss-4.2.1.GA-src/tools/etc/buildmagic/buildmagic.ent ./tools/etc/buildmagic/buildmagic.ent
|
|
--- /tmp/jboss-4.2.0.GA-src/tools/etc/buildmagic/buildmagic.ent Sat May 12 06:24:27 2007
|
|
+++ ./tools/etc/buildmagic/buildmagic.ent Tue Jun 19 14:03:55 2007
|
|
@@ -11,19 +11,8 @@
|
|
<property name="buildmagic.ant15.baseversion" value="1.5"/>
|
|
<property name="buildmagic.ant16.baseversion" value="1.6"/>
|
|
|
|
- <!--
|
|
- | Add new conditions for other supported Ant versions when they
|
|
- | become avaialble.
|
|
- -->
|
|
-
|
|
- <condition property="buildmagic.ant.compatible">
|
|
- <or>
|
|
- <contains string="${ant.version}"
|
|
- substring="Ant version ${buildmagic.ant15.baseversion}"/>
|
|
- <contains string="${ant.version}"
|
|
- substring="Ant version ${buildmagic.ant16.baseversion}"/>
|
|
- </or>
|
|
- </condition>
|
|
+ <!-- disable ant checks -->
|
|
+ <property name="buildmagic.ant.compatible" value="forced"/>
|
|
|
|
<fail unless="buildmagic.ant.compatible">
|
|
|