aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mate/Makefile.am
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2005-08-01 21:09:34 +0000
committerGerald Combs <gerald@wireshark.org>2005-08-01 21:09:34 +0000
commit6bcaec9a123644ac81fc7fd3a674a28f3c110f42 (patch)
tree3eccd6a38946b567f188081bbbcd9a637532e3b8 /plugins/mate/Makefile.am
parentf0cf1e9f64370b6b3b1123aa74ae08a096361efe (diff)
Make sure "lemon" exists before we try to use it. This can happen if we
run "make dist" before running "make". svn path=/trunk/; revision=15167
Diffstat (limited to 'plugins/mate/Makefile.am')
-rw-r--r--plugins/mate/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mate/Makefile.am b/plugins/mate/Makefile.am
index 9e319d99e4..bdcd0a10e9 100644
--- a/plugins/mate/Makefile.am
+++ b/plugins/mate/Makefile.am
@@ -71,7 +71,7 @@ mate_parser.c : mate_parser.l
LEMON = ../../tools/lemon
mate_grammar.h : mate_grammar.c
-mate_grammar.c : mate_grammar.lemon mate.h mate_util.h
+mate_grammar.c : mate_grammar.lemon mate.h mate_util.h $(LEMON)/lemon
$(LEMON)/lemon t=$(srcdir)/$(LEMON)/lempar.c $(srcdir)/mate_grammar.lemon || \
(rm -f grammar.c grammar.h ; false)