diff options
author | tron <tron> | 2002-01-03 21:59:19 +0000 |
---|---|---|
committer | tron <tron> | 2002-01-03 21:59:19 +0000 |
commit | 16b98c403a74a5d265ed2c965709c74201a09e99 (patch) | |
tree | d10812092cd39a8ddfe0a67b4d6d36cce7d71d2b | |
parent | e612277f99187c55e5815b7c40a5742874f169d8 (diff) | |
download | pkgsrc-16b98c403a74a5d265ed2c965709c74201a09e99.tar.gz |
Build package with "gcc" package systems with "egcs" in base distribution
instead of bailing out.
-rw-r--r-- | audio/libogg/Makefile | 6 | ||||
-rw-r--r-- | audio/libvorbis/Makefile | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/audio/libogg/Makefile b/audio/libogg/Makefile index 59e1b344b96..84b05a2294b 100644 --- a/audio/libogg/Makefile +++ b/audio/libogg/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2002/01/02 12:32:44 lukem Exp $ +# $NetBSD: Makefile,v 1.9 2002/01/03 21:59:19 tron Exp $ DISTNAME= libogg-1.0rc3 PKGNAME= libogg-1.0.0.7 @@ -16,9 +16,9 @@ LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig PLIST_SUBST+= DISTNAME=${DISTNAME} -GCC_VERSION!=gcc --version +GCC_VERSION!= gcc --version .if (${GCC_VERSION:C/-.*$$//} == egcs) -IGNORE= "gcc ${GCC_VERSION} cannot be used, as it generates bad ogg files" +.include "../../lang/gcc/Makefile.gcc" .endif .include "../../mk/bsd.pkg.mk" diff --git a/audio/libvorbis/Makefile b/audio/libvorbis/Makefile index 464f7d629ca..20be15c82ae 100644 --- a/audio/libvorbis/Makefile +++ b/audio/libvorbis/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2002/01/02 12:39:36 lukem Exp $ +# $NetBSD: Makefile,v 1.15 2002/01/03 22:01:59 tron Exp $ DISTNAME= libvorbis-1.0rc3 PKGNAME= libvorbis-1.0.0.7 @@ -22,7 +22,7 @@ PLIST_SUBST+= DISTNAME=${DISTNAME} GCC_VERSION!=gcc --version .if (${GCC_VERSION:C/-.*$$//} == egcs) -IGNORE= "gcc ${GCC_VERSION} cannot be used, as it generates bad ogg files" +.include "../../lang/gcc/Makefile.gcc" .endif .include "../../audio/libogg/buildlink.mk" |