diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2014-04-23 10:50:27 +0200 |
---|---|---|
committer | Anders Broman <a.broman58@gmail.com> | 2014-04-25 04:23:46 +0000 |
commit | bd38b3152d12584b9cd31d0c49706f1cebaa087a (patch) | |
tree | dd9ffd4b9f64647e9c683085b0fb73337132a7ab /plugins/mate | |
parent | 748e0d4221eabab207a350640ce3f526c73afde9 (diff) | |
download | wireshark-bd38b3152d12584b9cd31d0c49706f1cebaa087a.tar.gz wireshark-bd38b3152d12584b9cd31d0c49706f1cebaa087a.tar.bz2 wireshark-bd38b3152d12584b9cd31d0c49706f1cebaa087a.zip |
Support out-of-source checkapi
Always call $(top_srcdir)/tools/checkAPIs.pl with -sourcedir=$(srcdir)
from Makefile.am to allow out-of-source 'make checkapi'.
Change-Id: I60d7e0079984a8ededdacf4517a0738486fa7973
Reviewed-on: https://code.wireshark.org/review/1294
Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'plugins/mate')
-rw-r--r-- | plugins/mate/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mate/Makefile.am b/plugins/mate/Makefile.am index 4ccd3ea469..64679ff9e9 100644 --- a/plugins/mate/Makefile.am +++ b/plugins/mate/Makefile.am @@ -157,4 +157,5 @@ mate_grammar.c : mate_grammar.lemon mate.h mate_util.h $(LEMON)/lemon$(EXEEXT) checkapi: $(PERL) $(top_srcdir)/tools/checkAPIs.pl -g abort -g termoutput -build \ - $(CLEAN_SRC_FILES) $(CLEAN_HEADER_FILES) + -sourcedir=$(srcdir) \ + $(CLEAN_SRC_FILES) $(CLEAN_HEADER_FILES) |