Community
Participate
Working Groups
+++ This bug was initially created as a clone of Bug #315762 +++ Build Identifier: 3.6RC2 org.eclipse.pde.internal.build.builder.ModelBuildScriptGenerator has an mistake and as result generated build.xml contains condition: <property name="compilation.problem.marker" value="${build.result.folder}/compilation.problem"/> <condition property="compilation.problem.marker.exists" value="true" > <and> <available file="${compilation.problem.marker}"/> <isfalse value="p2.publishonerror"/> </and> </condition> where: <isfalse value="p2.publishonerror"/> because "isfalse - Tests whether a string is not true, the negation of <istrue>" (c) Ant Manual - this condition always true independently of "p2.publishonerror" property It should be: <isfalse value="${p2.publishonerror}"/> It is result of fix of bug [269972] https://bugs.eclipse.org/bugs/show_bug.cgi?id=269972 Reproducible: Always
Fixed in HEAD for 3.7
.