diff options
author | tron <tron> | 1998-11-26 00:48:51 +0000 |
---|---|---|
committer | tron <tron> | 1998-11-26 00:48:51 +0000 |
commit | c5f1845cb80ed5acecffd0ce64336fc7067fe2cb (patch) | |
tree | a870538a395bb46102a01780a1f0f83f357a0f3e /lang/clisp | |
parent | bc24354ad8f420963b5e261d47d247be18e3db2c (diff) | |
download | pkgsrc-c5f1845cb80ed5acecffd0ce64336fc7067fe2cb.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 |