From 4ebe24dfea0c9f93cbfaee66b52a0670e66124d8 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 10 Aug 2017 22:52:28 +0200 Subject: [PATCH] maketgz: remove old *.dist files before making the tarball To avoid "old crap" unintentionally getting shipped. Bug: https://curl.haxx.se/mail/lib-2017-08/0050.html Reported-by: Christian Weisgerber --- maketgz | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/maketgz b/maketgz index e377c9b73..b740173db 100755 --- a/maketgz +++ b/maketgz @@ -50,6 +50,13 @@ if test -z "$patch"; then exit fi +# +# As a precaution, remove all *.dist files that may be lying around, to reduce +# the risk of old leftovers getting shipped. The root 'Makefile.dist' is the +# exception. +echo "removing all old *.dist files" +find . -name "*.dist" -a ! -name Makefile.dist -exec rm {} \; + numeric=`perl -e 'printf("%02x%02x%02x\n", '"$major, $minor, $patch);"` HEADER=include/curl/curlver.h