summaryrefslogtreecommitdiff
path: root/security/aide/Makefile
diff options
context:
space:
mode:
authorjlam <jlam>2005-05-15 19:05:54 +0000
committerjlam <jlam>2005-05-15 19:05:54 +0000
commit0ed7f4f4d2bcb4e6216953a55fe99e77095ca4f7 (patch)
tree4292f09389f0d53d9c18c996c94f0eb9c6e4c821 /security/aide/Makefile
parent99b784c2739c8d498806c282652795ddec981040 (diff)
downloadpkgsrc-0ed7f4f4d2bcb4e6216953a55fe99e77095ca4f7.tar.gz
Avoid crazy YACC hacks when using the new tools framework.
Diffstat (limited to 'security/aide/Makefile')
-rw-r--r--security/aide/Makefile6
1 files changed, 5 insertions, 1 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