diff options
author | linimon <linimon@FreeBSD.org> | 2010-12-17 12:04:39 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2010-12-17 12:04:39 +0800 |
commit | 051b7112c42c80a5b0a19f5d98fc7076725a0bbd (patch) | |
tree | 063c8bf992fd27e4612e0f3681496ffe7a3e94f0 /lang/fasm | |
parent | 276baa6d9c5f2009857ef3e5a70aeace57e27840 (diff) | |
download | freebsd-ports-gnome-051b7112c42c80a5b0a19f5d98fc7076725a0bbd.tar.gz freebsd-ports-gnome-051b7112c42c80a5b0a19f5d98fc7076725a0bbd.tar.zst freebsd-ports-gnome-051b7112c42c80a5b0a19f5d98fc7076725a0bbd.zip |
Use the Makevar HAVE_COMPAT_IA32_LIBS instead of hard-coding the
equivalent test.
Hat: portmgr
Diffstat (limited to 'lang/fasm')
-rw-r--r-- | lang/fasm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/fasm/Makefile b/lang/fasm/Makefile index d29257741257..7fa731a66c65 100644 --- a/lang/fasm/Makefile +++ b/lang/fasm/Makefile @@ -20,7 +20,7 @@ WRKSRC= ${WRKDIR}/${PORTNAME} .include <bsd.port.pre.mk> .if ${ARCH} != "i386" -.if exists(/usr/lib32) +.if defined(HAVE_COMPAT_IA32_LIBS) CFLAGS= -m32 -L/usr/lib32 -B/usr/lib32 .else IGNORE= requires 32-bit libraries installed under /usr/lib32 |