diff options
author | Michael Richardson <mcr@sandelman.ca> | 2019-08-16 15:30:31 -0400 |
---|---|---|
committer | Michael Richardson <mcr@sandelman.ca> | 2019-08-18 13:32:07 -0400 |
commit | a9363a57cb1e6b52be56dcf69303d4fc8b684673 (patch) | |
tree | c192a9ec009fe56f690723695f3daa968ccd0780 /Makefile.in | |
parent | f50b5d79085dd3c5212b52a99697cb4ccd4dea6d (diff) | |
download | tcpdump-a9363a57cb1e6b52be56dcf69303d4fc8b684673.tar.gz |
make check needs to work in build directories
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 35137173..401b5141 100644 --- a/Makefile.in +++ b/Makefile.in @@ -443,7 +443,7 @@ distclean: rm -rf autom4te.cache tests/DIFF tests/NEW check: tcpdump - (cd tests && ./TESTrun.sh) + (mkdir -p tests && cd tests && SRCDIR=${srcdir} ${srcdir}/tests/TESTrun.sh ) extags: $(TAGFILES) ctags $(TAGFILES) |