diff options
author | richard <richard@pkgsrc.org> | 2016-06-01 15:00:25 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2016-06-01 15:00:25 +0000 |
commit | dd7ca1b8906a102eb2e8dab9e15e713b980523ec (patch) | |
tree | d9e37129b94259bac49d3f4b21e9e3dfd5f0e0ba | |
parent | b67cb91dba4fe9ae04976ebe51575ef5fceced67 (diff) | |
download | pkgsrc-dd7ca1b8906a102eb2e8dab9e15e713b980523ec.tar.gz |
SunOS i386 is the default ABI. Fix build on i386 by using ABI:U
-rw-r--r-- | audio/openal/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/openal/Makefile b/audio/openal/Makefile index 13d9128b3ab..5bc93666ff9 100644 --- a/audio/openal/Makefile +++ b/audio/openal/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.32 2015/10/05 03:56:17 richard Exp $ +# $NetBSD: Makefile,v 1.33 2016/06/01 15:00:25 richard Exp $ DISTNAME= openal-0.0.8 PKGREVISION= 6 @@ -36,7 +36,7 @@ CONFIGURE_ENV+= NASM_FORMAT="-f macho" .endif .if ${OPSYS} == "SunOS" -. if ${ABI} == "64" +. if ${ABI:U} == "64" CONFIGURE_ENV+= NASM_FORMAT="-f elf64" . else CONFIGURE_ENV+= NASM_FORMAT="-f elf32" |