From 95763997481961b9b2c6349794db59fb35ecbebd Mon Sep 17 00:00:00 2001 From: sbruno Date: Thu, 11 Sep 2014 15:17:28 +0000 Subject: Add armv6 to the 32 bit list of targets Phabric: https://reviews.freebsd.org/D762 Approved by: bdrewery (mentor) --- math/lp_solve/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -.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 -- cgit v1.1