diff options
author | jlam <jlam@pkgsrc.org> | 2005-05-15 19:05:54 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2005-05-15 19:05:54 +0000 |
commit | c757d1423e0122ea930166fe7abd60b26a3c7fca (patch) | |
tree | 4292f09389f0d53d9c18c996c94f0eb9c6e4c821 /security | |
parent | 75b0b9c5cc4f72a157787cabcd566c9f47462f7c (diff) | |
download | pkgsrc-c757d1423e0122ea930166fe7abd60b26a3c7fca.tar.gz |
Avoid crazy YACC hacks when using the new tools framework.
Diffstat (limited to 'security')
-rw-r--r-- | security/aide/Makefile | 6 | ||||
-rw-r--r-- | security/aide06/Makefile | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/security/aide/Makefile b/security/aide/Makefile index 5b8c4f695bc..4ec8eabcc33 100644 --- a/security/aide/Makefile +++ b/security/aide/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.17 2005/04/11 21:47:10 tv Exp $ +# $NetBSD: Makefile,v 1.18 2005/05/15 19:05:54 jlam Exp $ # DISTNAME= aide-0.10 @@ -14,8 +14,12 @@ BUILDLINK_DEPENDS.mhash?= mhash>=0.8.17 GNU_CONFIGURE= yes USE_GNU_TOOLS+= lex make yacc +USE_TOOLS+= bison .include "../../security/mhash/buildlink3.mk" .include "../../mk/bsd.pkg.mk" + +.if empty(_USE_NEW_TOOLS:M[yY][eE][sS]) #don't set YACC so configure can correctly find bison YACC= +.endif diff --git a/security/aide06/Makefile b/security/aide06/Makefile index 0838aab7e56..6940e0badbc 100644 --- a/security/aide06/Makefile +++ b/security/aide06/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2005/04/11 21:47:10 tv Exp $ +# $NetBSD: Makefile,v 1.9 2005/05/15 19:05:54 jlam Exp $ # DISTNAME= aide-0.6 @@ -14,7 +14,11 @@ COMMENT= Older intrusion detection system for checking file integrity GNU_CONFIGURE= yes USE_GNU_TOOLS+= yacc lex +USE_TOOLS+= bison .include "../../mk/bsd.pkg.mk" + +.if empty(_USE_NEW_TOOLS:M[yY][eE][sS]) #don't set YACC so configure can correctly find bison YACC= +.endif |