diff options
author | richard <richard> | 2014-02-23 13:35:41 +0000 |
---|---|---|
committer | richard <richard> | 2014-02-23 13:35:41 +0000 |
commit | 99301d5bf4c241c64aaf1074748158cf0fbae77e (patch) | |
tree | a3fb477ac5fc778505dc80e756d2ee92ec57ac9a /audio | |
parent | e6d7a62e18509ca6612bb767fad91f7b0d41df69 (diff) | |
download | pkgsrc-99301d5bf4c241c64aaf1074748158cf0fbae77e.tar.gz |
avoid using -lutil on SunOS
Diffstat (limited to 'audio')
-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" |