aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2022-05-25 13:45:30 +0200
committerlns <matzeton@googlemail.com>2022-05-26 13:02:41 +0200
commite27fba584f5e3d0f88127de691a704e6b7516af2 (patch)
tree06de31c587b822fee05470fa22e268b61a551caa /example
parent7010d17ccc5669b2c2cf4fd7b7140b5f4c580b20 (diff)
Added script to compare and verify the output of `make dist'.add/tarball-verification-script
This fixes some build/test issues resulting when using tarballs. * nDPI uses autotools (especially autoconf) in a wrong way, see #1163 Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'example')
-rw-r--r--example/Makefile.in8
1 files changed, 6 insertions, 2 deletions
diff --git a/example/Makefile.in b/example/Makefile.in
index a8b2b0a5b..370eb2b2f 100644
--- a/example/Makefile.in
+++ b/example/Makefile.in
@@ -83,8 +83,12 @@ clean:
/bin/rm -rf build
distdir:
- cp categories.txt mining_hosts.txt protos.txt README.DPDK '$(distdir)/'
- find . -maxdepth 1 -type f -name '*.c' -o -name '*.h' -o -name '*.py' | xargs -I'{}' cp '{}' '$(distdir)/{}'
+ cp README.DPDK '$(distdir)/'
+ find . -maxdepth 1 -type f -name '*.c' \
+ -o -name '*.h' \
+ -o -name '*.py' \
+ -o -name '*.txt' \
+ -o -name '*.csv' | xargs -I'{}' cp '{}' '$(distdir)/{}'
distclean: clean
/bin/rm -f Makefile.dpdk