From: Daniel Stenberg Date: Thu, 10 Aug 2017 20:52:28 +0000 (+0200) Subject: maketgz: remove old *.dist files before making the tarball X-Git-Tag: curl-7_55_1~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ebe24dfea0c9f93cbfaee66b52a0670e66124d8;p=curl 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 --- 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