diff options
author | maya <maya@pkgsrc.org> | 2016-07-05 00:19:59 +0000 |
---|---|---|
committer | maya <maya@pkgsrc.org> | 2016-07-05 00:19:59 +0000 |
commit | e3854148ed2b504bd1d2029659308ea54ece3ca0 (patch) | |
tree | c8c5c76de3277792eda5c3f32c1dd07de687fbcc /audio | |
parent | 04648ffb89a0486d8bcf1b0967ec6c6c65b9a129 (diff) | |
download | pkgsrc-e3854148ed2b504bd1d2029659308ea54ece3ca0.tar.gz |
Avoid GCC_REQD= in favour of GCC_REQD+=
The latter allows users to override the value with a newer version.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/musicpd/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/musicpd/Makefile b/audio/musicpd/Makefile index 0611e20bf67..e8586a9391c 100644 --- a/audio/musicpd/Makefile +++ b/audio/musicpd/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.120 2016/06/19 20:34:38 wiz Exp $ +# $NetBSD: Makefile,v 1.121 2016/07/05 00:19:59 maya Exp $ DISTNAME= mpd-0.19.16 PKGNAME= ${DISTNAME:S/mpd/musicpd/} @@ -20,7 +20,7 @@ USE_TOOLS+= pkg-config USE_LANGUAGES= c c++ # See ${WRKSRC}/src/Compiler.h: mpd requires gcc>=4.6 -GCC_REQD= 4.6 +GCC_REQD+= 4.6 # MacOS X audio output is no longer enabled by default. CONFIGURE_ARGS.Darwin+= --enable-osx |