From e27fba584f5e3d0f88127de691a704e6b7516af2 Mon Sep 17 00:00:00 2001 From: lns Date: Wed, 25 May 2022 13:45:30 +0200 Subject: Added script to compare and verify the output of `make dist'. 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 --- example/Makefile.in | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'example') 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 -- cgit v1.2.3