* 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:
Oliver Tappe 2009-09-08 21:07:27 +00:00
parent 568708be10
commit 84eac0b07c

View File

@ -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 {