1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 07:05:24 +02:00

Add feature and plugin qualifier for N-builds

As suggested on http://wiki.eclipse.org/index.php/Platform-releng-faq
This commit is contained in:
Martin Oberhuber 2006-07-25 17:07:26 +00:00
parent 6e9bacb11b
commit 7005a01abc
3 changed files with 8 additions and 0 deletions

View file

@ -80,6 +80,10 @@ $incantation .= "-DbaseLocation=${eclipse} ";
$incantation .= "-DbuildType=${buildType} ";
$incantation .= "-DbuildId=${buildId} ";
$incantation .= "-DmapVersionTag=${tag} ";
if ($buildType == "N") {
$incantation .= "-DforceContextQualifier=${buildId} ";
}
print("${incantation}\n");

View file

@ -60,6 +60,9 @@ command += "-DbaseLocation=#{eclipse} "
command += "-DbuildType=#{buildType} "
command += "-DbuildId=#{buildId} "
command += "-DmapVersionTag=#{tag} "
if ("#{buildType}" == "N") then
command += "-DforceContextQualifier=#{buildId} "
end
puts(command)

View file

@ -35,6 +35,7 @@ command="$command -DbuildType=${buildType} "
command="$command -DbuildId=${buildId} "
command="$command -DmapVersionTag=${tag} "
command="$command -DdoPublish=true "
command="$command -DforceContextQualifier=${buildId} "
#command="$command postBuild "
echo "$command"