diff options
author | Toni <matzeton@googlemail.com> | 2022-05-26 15:07:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-26 15:07:22 +0200 |
commit | 78dfe959cb175610726ae06341e55aeb39f0feba (patch) | |
tree | e0d468b515bea9ffd7d7ca5b623ff437060491c0 /example/Makefile.in | |
parent | 9614b66b449d84a810b0b05167c9e408bfca3d39 (diff) |
Added script to compare and verify the output of `make dist'. (#1551)
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/Makefile.in')
-rw-r--r-- | example/Makefile.in | 8 |
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 |