Newer build tools generate the following warning:
authorjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 27 Apr 2003 09:16:36 +0000 (09:16 +0000)
committerjmayer <jmayer@f5534014-38df-0310-8fa8-9805f1628bb7>
Sun, 27 Apr 2003 09:16:36 +0000 (09:16 +0000)
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.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@7582 f5534014-38df-0310-8fa8-9805f1628bb7

wiretap/Makefile.am

index 17ef37b30f791503ccd598604382ffbf09c888f7..e437004ea2cf4b82c1870c2bf2e0bb709edd2407 100644 (file)
@@ -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