aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss.ws@gmail.com>2016-05-11 12:06:55 -0400
committerMichael Mann <mmann78@netscape.net>2016-05-11 18:20:57 +0000
commitd5031d5cf4f87ee91b7c9a110b159e121f9d9f19 (patch)
tree3a4d93101f3709816169a27535e1deae8d14baed /wiretap
parentfee7e95b3a79a3c6bf91328a5e0bc2b07173d069 (diff)
automake/nmake: don't run checkAPIs on lex and yacc files.
The lex files use malloc and friends which is prohibited; don't check them (until checkAPIs becomes smart enough to realize this is OK). This mirrors what is done in cmake. Change-Id: Ie80ea7a9b7c0e25c70c8edf3671e80a493ea1b2f Reviewed-on: https://code.wireshark.org/review/15377 Petri-Dish: Jeff Morriss <jeff.morriss.ws@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'wiretap')
-rw-r--r--wiretap/Makefile.am3
-rw-r--r--wiretap/Makefile.nmake2
2 files changed, 2 insertions, 3 deletions
diff --git a/wiretap/Makefile.am b/wiretap/Makefile.am
index 6414645942..2d5f7366f6 100644
--- a/wiretap/Makefile.am
+++ b/wiretap/Makefile.am
@@ -113,5 +113,4 @@ checkapi:
## 'abort' checking disabled for now pending resolution of existing use of g_assert & g_error
## $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput \
$(PERL) $(top_srcdir)/tools/checkAPIs.pl -g termoutput -build \
- -sourcedir=$(srcdir) \
- $(NONGENERATED_C_FILES) $(GENERATOR_FILES)
+ -sourcedir=$(srcdir) $(NONGENERATED_C_FILES)
diff --git a/wiretap/Makefile.nmake b/wiretap/Makefile.nmake
index d4982f311a..219f3eaa28 100644
--- a/wiretap/Makefile.nmake
+++ b/wiretap/Makefile.nmake
@@ -79,4 +79,4 @@ maintainer-clean: distclean
checkapi:
## 'abort' checking disabled for now pending resolution of existing use of g_assert & g_error
## $(PERL) ../tools/checkAPIs.pl -g abort -g termoutput $(NONGENERATED_C_FILES) $(GENERATOR_FILES)
- $(PERL) ../tools/checkAPIs.pl -g termoutput -build $(NONGENERATED_C_FILES) $(GENERATOR_FILES)
+ $(PERL) ../tools/checkAPIs.pl -g termoutput -build $(NONGENERATED_C_FILES)