diff options
author | richard <richard> | 2016-06-01 15:00:25 +0000 |
---|---|---|
committer | richard <richard> | 2016-06-01 15:00:25 +0000 |
commit | b41fbb542cf8caccf867479fc386fe30f9981315 (patch) | |
tree | e35080fdc853fda9d408ad13942ce76573f3e276 /audio/openal/Makefile | |
parent | 6a29bbb44b3d335c90c2b5279dc909747fb4f94f (diff) | |
download | pkgsrc-b41fbb542cf8caccf867479fc386fe30f9981315.tar.gz |
SunOS i386 is the default ABI. Fix build on i386 by using ABI:U
Diffstat (limited to 'audio/openal/Makefile')
-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" |