diff options
author | tron <tron@pkgsrc.org> | 1998-11-26 00:48:51 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1998-11-26 00:48:51 +0000 |
commit | 1c4da2d8c074868ce5692089ee7d1ae1138be3bf (patch) | |
tree | a870538a395bb46102a01780a1f0f83f357a0f3e /lang/clisp | |
parent | 5c38a8ee46299f27a69fd9ba7f46236cd870e9d6 (diff) | |
download | pkgsrc-1c4da2d8c074868ce5692089ee7d1ae1138be3bf.tar.gz |
Don't attempt to build package if egcs is installed.
Diffstat (limited to 'lang/clisp')
-rw-r--r-- | lang/clisp/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lang/clisp/Makefile b/lang/clisp/Makefile index bccceefaf5d..3a811ce4c02 100644 --- a/lang/clisp/Makefile +++ b/lang/clisp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 1998/11/22 19:39:48 tron Exp $ +# $NetBSD: Makefile,v 1.5 1998/11/26 00:49:54 tron Exp $ DISTNAME= clispsrc PKGNAME= clisp-19980909 @@ -13,6 +13,11 @@ CONFLICTS= clisp-19980829 NOT_FOR_ARCHS= alpha # severe LP64 problems +GCC_VERSION!= gcc --version +.if (${GCC_VERSION:C/-.*$$//} == egcs) && !target(clean) +IGNORE= "cannot be built with egcs yet" +.endif + GNU_CONFIGURE= YES WRKSRC= ${WRKDIR}/clisp-1998-09-09/src |