Opened 14 years ago

Closed 14 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)

OptionalPackages-BasicCommandLineTools.patch (841 bytes ) - added by mmadia 14 years ago.

Download all attachments as: .zip

Change History (2)

comment:1 by tqh, 14 years ago

Resolution: fixed
Status: newclosed

Fixed in hrev35421.

Note: See TracTickets for help on using tickets.