Opened 15 years ago
Closed 15 years ago
#5365 closed enhancement (fixed)
[patch] Remove compound if statement for BasicCommandLineTools
Reported by: | mmadia | Owned by: | bonefish |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Build System | Version: | R1/Development |
Keywords: | Cc: | ||
Blocked By: | Blocking: | ||
Platform: | All |
Description
installoptionalpackage doesn't support the compound if statement
if [ IsOptionalHaikuImagePackageAdded BasicCommandLineTools ] && $(TARGET_ARCH) = x86 {
The attached patch changes it to
if [ IsOptionalHaikuImagePackageAdded BasicCommandLineTools ] { if $(TARGET_ARCH) != x86 { Echo "No optional package BasicCommandLineTools available for $(TARGET_ARCH)" ; } else { ... }
Attachments (1)
Change History (2)
by , 15 years ago
Attachment: | OptionalPackages-BasicCommandLineTools.patch added |
---|
comment:1 by , 15 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Fixed in hrev35421.