diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-27 05:05:32 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2000-09-27 05:05:32 +0000 |
commit | 137fa6c00e19aa941413b73462d26da8e5b6eade (patch) | |
tree | cd0aa1719a972ab068293c567499fd9fa3b325bf | |
parent | 83ec54675c19f25cfbb2e8a8863c6ee2191d8b0c (diff) | |
download | wireshark-137fa6c00e19aa941413b73462d26da8e5b6eade.tar.gz wireshark-137fa6c00e19aa941413b73462d26da8e5b6eade.tar.bz2 wireshark-137fa6c00e19aa941413b73462d26da8e5b6eade.zip |
Fix for bug in lex command.
svn path=/trunk/; revision=2459
-rw-r--r-- | epan/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/Makefile.am b/epan/Makefile.am index 651a204ece..f7d9c92784 100644 --- a/epan/Makefile.am +++ b/epan/Makefile.am @@ -2,7 +2,7 @@ # Automake file for the EPAN library # (Ethereal Protocol ANalyzer Library) # -# $Id: Makefile.am,v 1.1 2000/09/27 04:54:46 gram Exp $ +# $Id: Makefile.am,v 1.2 2000/09/27 05:05:32 gram Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -67,7 +67,7 @@ CLEANFILES = \ *~ dfilter-scanner.c : dfilter-scanner.l - $(LEX) -Pdfilter_ -odfilter-scanner.c $(srcdir)/epan/dfilter-scanner.l + $(LEX) -Pdfilter_ -odfilter-scanner.c $(srcdir)/dfilter-scanner.l tvbtest: tvbtest.o tvbuff.o except.o strutil.o $(LINK) -o tvbtest tvbtest.o tvbuff.o except.o strutil.o `glib-config --libs` |