diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-01-24 01:33:49 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-01-24 01:33:49 +0000 |
commit | a3f787edbd067c8490a0cc80195dbe0edaa7f5ce (patch) | |
tree | fde99e500031bed1cbb5608b9566d9a3d9124494 | |
parent | 2e520ef7b9ff3d923193c27c0afd1d715a3efb41 (diff) | |
download | pkgsrc-a3f787edbd067c8490a0cc80195dbe0edaa7f5ce.tar.gz |
Use GCC_REQD instead of USE_PKGSRC_GCC when overriding the compiler
for arm, so that we don't need to install the gcc package(s) on
machines that already have a working compiler in their /usr/bin.
-rw-r--r-- | graphics/aalib/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/aalib/Makefile.common b/graphics/aalib/Makefile.common index 601d59597d0..6ce2fd61459 100644 --- a/graphics/aalib/Makefile.common +++ b/graphics/aalib/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.12 2004/01/20 12:18:15 agc Exp $ +# $NetBSD: Makefile.common,v 1.13 2004/01/24 01:33:49 kristerw Exp $ DISTNAME= aalib-${DIST_VERS} CATEGORIES+= graphics @@ -21,7 +21,7 @@ LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig CONFIGURE_ARGS+= --with-curses-driver=no .if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "arm32" -USE_PKGSRC_GCC= # defined +GCC_REQD= 2.95.3 .endif .if !target(post-patch) |