diff options
author | richard <richard@pkgsrc.org> | 2014-02-23 13:35:41 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2014-02-23 13:35:41 +0000 |
commit | 75e826b8f39884674339f0ca572cd8a3d9c77f66 (patch) | |
tree | a3fb477ac5fc778505dc80e756d2ee92ec57ac9a /audio/streamtuner | |
parent | 25c5c30da3c74db8ef9aa30f9c0783f7e7954b5b (diff) | |
download | pkgsrc-75e826b8f39884674339f0ca572cd8a3d9c77f66.tar.gz |
avoid using -lutil on SunOS
Diffstat (limited to 'audio/streamtuner')
-rw-r--r-- | audio/streamtuner/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/streamtuner/Makefile b/audio/streamtuner/Makefile index 6bb9b268479..f39f4580cc6 100644 --- a/audio/streamtuner/Makefile +++ b/audio/streamtuner/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.70 2014/02/12 23:17:34 tron Exp $ +# $NetBSD: Makefile,v 1.71 2014/02/23 13:35:41 richard Exp $ # DISTNAME= streamtuner-0.99.99 @@ -24,6 +24,10 @@ CONFIGURE_ARGS+= --with-html-dir=${PREFIX}/share/doc .include "options.mk" +.if ${OPSYS} == "SunOS" +BUILDLINK_TRANSFORM+= rm:-lutil +.endif + .include "../../mk/omf-scrollkeeper.mk" .include "../../www/curl/buildlink3.mk" .include "../../x11/gtk2/buildlink3.mk" |