diff options
author | dmcmahill <dmcmahill> | 2000-05-20 16:44:27 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2000-05-20 16:44:27 +0000 |
commit | 3f260964735d0afce8ea1752076d4976224f9b7e (patch) | |
tree | d3aa9bc065c5d01668ed0cb18dd1b6e0378af6af /security/aide | |
parent | 777de1b1d1a431af5a164f860b8fa974fc81b467 (diff) | |
download | pkgsrc-3f260964735d0afce8ea1752076d4976224f9b7e.tar.gz |
-fix BUILD_DEPENDS to correctly include bison
-don't let make(1) set YACC (which then gets passed to configure) so
configure can correctly find bison.
Diffstat (limited to 'security/aide')
-rw-r--r-- | security/aide/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/security/aide/Makefile b/security/aide/Makefile index 3f5005a80bc..a35e1208e9b 100644 --- a/security/aide/Makefile +++ b/security/aide/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2000/04/26 12:51:35 hubertf Exp $ +# $NetBSD: Makefile,v 1.3 2000/05/20 16:44:27 dmcmahill Exp $ # DISTNAME= aide-0.6 @@ -10,7 +10,8 @@ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.cs.tut.fi/~rammer/aide.html GNU_CONFIGURE= yes -BUILD_DEFS+= bison:../../devel/bison -CONFIGURE_ENV+= YACC="bison -y" +BUILD_DEPENDS+= bison:../../devel/bison +#don't set YACC so configure can correctly find bison +YACC= .include "../../mk/bsd.pkg.mk" |