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