closing #4453:
* fixed precedence problem in jam rule that caused an if to evaluate to true, no matter if a cd or an image was being built git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33007 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
parent
568708be10
commit
84eac0b07c
@ -763,7 +763,7 @@ rule InstallOptionalHaikuImagePackage package : url : dirTokens : isCDPackage
|
||||
# download zip file
|
||||
local zipFile = [ DownloadOptionalPackage $(package) : $(url) ] ;
|
||||
|
||||
if $(isCDPackage) = true || $(isCDPackage) = 1 && $(HAIKU_CD_NAME) {
|
||||
if ( $(isCDPackage) = true || $(isCDPackage) = 1 ) && $(HAIKU_CD_NAME) {
|
||||
# copy onto image
|
||||
AddFilesToHaikuImage _packages_ : $(zipFile) ;
|
||||
} else {
|
||||
|
Loading…
x
Reference in New Issue
Block a user