From: Francois-Xavier Le Bail Date: Thu, 31 Dec 2020 10:42:06 +0000 (+0100) Subject: Makefile.in: Run 'autoreconf -f' when buiding release X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/b1e86c1f0346baa24a8c72ce3bf8b4e3fcb5e36e?hp=a689cf870986a04cf7a8b4fc74cab10e808f3c93 Makefile.in: Run 'autoreconf -f' when buiding release Same as for libpcap. It's needed to update configure (PACKAGE_VERSION, PACKAGE_STRING, etc.) when VERSION is updated. --- diff --git a/Makefile.in b/Makefile.in index 72f849c3..86760f99 100644 --- a/Makefile.in +++ b/Makefile.in @@ -458,7 +458,8 @@ TAGS: $(TAGFILES) etags $(TAGFILES) releasetar: - @name=$(PROG)-`cat VERSION` ; \ + @autoreconf -f; \ + name=$(PROG)-`cat VERSION` ; \ mkdir $$name; \ tar cf - $(CSRC) $(HDR) $(LIBNETDISSECT_SRC) $(EXTRA_DIST) $(TEST_DIST) | (cd $$name; tar xf -); \ tar -c -z -f $$name.tar.gz $$name; \