diff options
author | Jörg Mayer <jmayer@loplof.de> | 2003-04-27 09:16:36 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2003-04-27 09:16:36 +0000 |
commit | 1032b043e81b9654a53ff83ff7bc8c86f5cc34f7 (patch) | |
tree | 271cf0a20e80a0a4e2ef53fc189ac1d8089af2c9 /wiretap | |
parent | 1834fb882ad0ede77949e5a7454430224219af95 (diff) | |
download | wireshark-1032b043e81b9654a53ff83ff7bc8c86f5cc34f7.tar.gz wireshark-1032b043e81b9654a53ff83ff7bc8c86f5cc34f7.tar.bz2 wireshark-1032b043e81b9654a53ff83ff7bc8c86f5cc34f7.zip |
Newer build tools generate the following warning:
Makefile.am:99: `YFLAGS' is a user variable, you should not override it;
Makefile.am:99: use `AM_YFLAGS' instead.
Fix it in the proposed way.
svn path=/trunk/; revision=7582
Diffstat (limited to 'wiretap')
-rw-r--r-- | wiretap/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/Makefile.am b/wiretap/Makefile.am index 17ef37b30f..e437004ea2 100644 --- a/wiretap/Makefile.am +++ b/wiretap/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for Wiretap # -# $Id: Makefile.am,v 1.40 2003/04/02 20:21:45 guy Exp $ +# $Id: Makefile.am,v 1.41 2003/04/27 09:16:36 jmayer Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -96,7 +96,7 @@ EXTRA_DIST = \ wtap.def # Any POSIX-compatible YACC should honor the -p flag -YFLAGS=-d -p ascend +AM_YFLAGS=-d -p ascend ascend-scanner.c : ascend-scanner.l $(LEX) -Pascend -oascend-scanner.c $(srcdir)/ascend-scanner.l |