diff options
author | jperkin <jperkin> | 2014-02-19 09:44:56 +0000 |
---|---|---|
committer | jperkin <jperkin> | 2014-02-19 09:44:56 +0000 |
commit | cb0ad30a370af0280e246621350fe7065cf9b408 (patch) | |
tree | f9bf03ff3753cfbbdd953edaa7872f72cc4a070e /net | |
parent | c7fe1c6c8edc659564ca457650503eb776f0b6b3 (diff) | |
download | pkgsrc-cb0ad30a370af0280e246621350fe7065cf9b408.tar.gz |
GCC_REQD should be appended to, not set.
Fixes issues where a newer GCC has been chosen by the user but the GCC_REQD
was forcing an older (and broken) one to be pulled regardless.
Diffstat (limited to 'net')
-rw-r--r-- | net/aria2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/aria2/Makefile b/net/aria2/Makefile index f8226e0017a..a95da47903a 100644 --- a/net/aria2/Makefile +++ b/net/aria2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2014/02/12 23:18:18 tron Exp $ +# $NetBSD: Makefile,v 1.49 2014/02/19 09:44:56 jperkin Exp $ # DISTNAME= aria2-1.18.2 @@ -14,7 +14,7 @@ LICENSE= gnu-gpl-v2 # Minimum requirement is 4.6.4, but lang/gcc46 is 4.6.3, then use 4.7 # See https://github.com/tatsuhiro-t/aria2/issues/144 -GCC_REQD= 4.7 +GCC_REQD+= 4.7 GNU_CONFIGURE= yes USE_LIBTOOL= yes |