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.
This commit is contained in:
Matt Madia
2013-11-30 21:28:15 -05:00
parent 7bf85edf58
commit 542c71fa50
+3 -1
View File
@@ -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 ;
}