diff options
author | sbruno <sbruno@FreeBSD.org> | 2014-09-11 15:17:28 +0000 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2014-09-11 15:17:28 +0000 |
commit | 95763997481961b9b2c6349794db59fb35ecbebd (patch) | |
tree | 962d12add3b396e6c37cc0626e74d66259ebfc28 | |
parent | c33e1f515c53a784ae3b48bd87768c0d8ea5de41 (diff) | |
download | FreeBSD-ports-95763997481961b9b2c6349794db59fb35ecbebd.zip FreeBSD-ports-95763997481961b9b2c6349794db59fb35ecbebd.tar.gz |
Add armv6 to the 32 bit list of targets
Phabric: https://reviews.freebsd.org/D762
Approved by: bdrewery (mentor)
-rw-r--r-- | math/lp_solve/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/math/lp_solve/Makefile b/math/lp_solve/Makefile index 3b665bf..d0886e4 100644 --- a/math/lp_solve/Makefile +++ b/math/lp_solve/Makefile @@ -20,7 +20,8 @@ BUILDENV= ${SETENV} TMPDIR="${TMPDIR}" .include <bsd.port.pre.mk> -.if ${ARCH} == "i386" || ${ARCH} == "powerpc" +# probably need to add mips here as well +.if ${ARCH} == "i386" || ${ARCH} == "powerpc" || ${ARCH} == armv6 LPSOLVE_ARCH= ux32 .else LPSOLVE_ARCH= ux64 |