diff options
author | sbruno <sbruno@FreeBSD.org> | 2015-02-07 23:43:14 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2015-02-07 23:43:14 +0000 |
commit | 243b73a41b0c612490775de53d3fe6b673904208 (patch) | |
tree | 2a639a76c53f84e9e29ed0d13c8af4f02b74ef25 | |
parent | 6f8f47a4368ee1d97114094a64372ad1e4692524 (diff) | |
download | FreeBSD-ports-243b73a41b0c612490775de53d3fe6b673904208.zip FreeBSD-ports-243b73a41b0c612490775de53d3fe6b673904208.tar.gz |
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)
-rw-r--r-- | math/lp_solve/Makefile | 3 |
1 files changed, 1 insertions, 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 <bsd.port.pre.mk> -# 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 |