diff options
author | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-09-26 15:27:16 +0200 |
---|---|---|
committer | Francois-Xavier Le Bail <devel.fx.lebail@orange.fr> | 2019-09-26 15:43:54 +0200 |
commit | dbd70580fa548c39813c3e1b45455a3ac4acf25a (patch) | |
tree | 82094c8e66621810b6301ead9f1d717007b575a6 /Makefile.in | |
parent | 062598cec8afdb356c1169c99e9356d3cfd124c4 (diff) | |
download | tcpdump-dbd70580fa548c39813c3e1b45455a3ac4acf25a.tar.gz |
Makefile.in: Improve the way to add tests files in the realease tarball
We can now run "make releasetar" without cleaning out the current tests
directory.
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 7405aeb9..1d66a9ce 100644 --- a/Makefile.in +++ b/Makefile.in @@ -381,7 +381,7 @@ EXTRA_DIST = \ win32/prj/WinDump.sln \ win32/prj/WinDump.vcproj -TEST_DIST= `find tests \( -name 'DIFF' -prune \) -o \( -name NEW -prune \) -o -type f \! -name '.*' \! -name '*~' -print` +TEST_DIST= `git ls-files tests | grep -v 'tests/\..*'` all: $(PROG) |