Community
Participate
Working Groups
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
Created attachment 171099 [details] patch small, easy, safe path
bug 316641 fixed this in HEAD for 3.7. 3.6.1 development stream has not started yet.
done in 3.6.1