From 243b73a41b0c612490775de53d3fe6b673904208 Mon Sep 17 00:00:00 2001 From: sbruno Date: Sat, 7 Feb 2015 23:43:14 +0000 Subject: Mark armv6 and mips as ux32 capable to avoid breakage when building for these architectures. This still should allow aarch64 (when it appears) and mips64 to build ux64. PR: 197130 Reviewed by: mayo@oyam.ca (no objections or breakage) Approved by: mentor (implicit) --- math/lp_solve/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/math/lp_solve/Makefile b/math/lp_solve/Makefile index d0886e4..5d5a15e 100644 --- a/math/lp_solve/Makefile +++ b/math/lp_solve/Makefile @@ -20,8 +20,7 @@ BUILDENV= ${SETENV} TMPDIR="${TMPDIR}" .include -# probably need to add mips here as well -.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH} == armv6 +.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH} == "armv6" || ${ARCH} == "mips" LPSOLVE_ARCH= ux32 .else LPSOLVE_ARCH= ux64 -- cgit v1.1