diff options
author | Sean Bruno <sbruno@FreeBSD.org> | 2015-02-07 23:43:14 +0000 |
---|---|---|
committer | Sean Bruno <sbruno@FreeBSD.org> | 2015-02-07 23:43:14 +0000 |
commit | 36d0162ea91c588c38e2b496ea23d001d29a1698 (patch) | |
tree | 2a639a76c53f84e9e29ed0d13c8af4f02b74ef25 | |
parent | devel/jenkins-lts: update to 1.580.3 (diff) |
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 d0886e478673..5d5a15e8abf4 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 |