Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 295773
Collapse All | Expand All

(-)tools/scripts/buildAllHelper.xml (-13 / +3 lines)
Lines 1535-1557 Link Here
1535
			</then>
1535
			</then>
1536
		</if>
1536
		</if>
1537
1537
1538
		<!-- support incubation=true & incubation=false for those who launch builds from Ant rather than shell -->
1539
		<if>
1538
		<if>
1540
			<or>
1539
			<not>
1541
				<not>
1540
				<isset property="incubation" />
1542
					<isset property="incubation" />
1541
			</not>
1543
				</not>
1544
				<isfalse value="${incubation}" />
1545
			</or>
1546
			<then>
1542
			<then>
1547
				<property name="incubation" value="" />
1543
				<property name="incubation" value="" />
1548
			</then>
1544
			</then>
1549
			<elseif>
1550
				<istrue value="${incubation}" />
1551
				<then>
1552
					<property name="incubation" value="-incubation" />
1553
				</then>
1554
			</elseif>
1555
		</if>
1545
		</if>
1556
1546
1557
		<for param="allInOneBuildType" list="${allInOneBuildTypes}">
1547
		<for param="allInOneBuildType" list="${allInOneBuildTypes}">
(-)buildAll.xml (-1 / +8 lines)
Lines 278-284 Link Here
278
			">
278
			">
279
			<sequential>
279
			<sequential>
280
				<if>
280
				<if>
281
					<isset property="@{arg}" />
281
					<and>
282
						<not>
283
							<equals arg1="${@{arg}}" arg2="" />
284
						</not>
285
						<isset property="@{arg}" />
286
					</and>
282
					<then>
287
					<then>
283
						<var name="args" value="${args} -D@{arg}=${@{arg}}" />
288
						<var name="args" value="${args} -D@{arg}=${@{arg}}" />
284
					</then>
289
					</then>
Lines 392-395 Link Here
392
		</if>
397
		</if>
393
	</target>
398
	</target>
394
399
400
	<target name="-Dincubation=" description="Hack for skipping over the case where incubation is null and build invoked via Ant instead of shell" />
401
395
</project>
402
</project>

Return to bug 295773