From 542c71fa50e66611a38ec142b6e758e20ea2f2cb Mon Sep 17 00:00:00 2001 From: Matt Madia Date: Sat, 30 Nov 2013 21:26:27 -0500 Subject: [PATCH] Need to account for WebPositive not building on x86_64. Commented out the previous if statement and added a TODO as a reminder for when it builds on x86_64. --- build/jam/repositories/Haiku | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/jam/repositories/Haiku b/build/jam/repositories/Haiku index 5ace41ecff..45b716069f 100644 --- a/build/jam/repositories/Haiku +++ b/build/jam/repositories/Haiku @@ -20,7 +20,9 @@ local packages = haiku_$(secondaryArchs)_devel ; -if $(TARGET_PACKAGING_ARCH) != x86_gcc2 || $(secondaryArchs) { +# TODO : the following should be used once WebPositive builds on x86_64 +# if $(TARGET_PACKAGING_ARCH) != x86_gcc2 || $(secondaryArchs) { +if x86 in $(HAIKU_PACKAGING_ARCHS) { packages += webpositive ; }