From b431b4ea88c8cc1b75edc4aeaa592942a905c18f Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Mon, 29 Jan 2018 13:19:02 +0000 Subject: [PATCH 1/1] Prevent patch remnants from being included in release tarballs. * src-release.sh (do_proto_toplev): Strip patch remnant files from the sources before creating the tarball. --- ChangeLog | 5 +++++ src-release.sh | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7db5d82230..c4cb63785c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2018-01-29 Nick Clifton + + * src-release.sh (do_proto_toplev): Strip patch remnant files from + the sources before creating the tarball. + 2018-01-13 Nick Clifton * src-release.sh: Update copyright notice. Change reference to devo diff --git a/src-release.sh b/src-release.sh index f7243970c9..3203a6af2b 100755 --- a/src-release.sh +++ b/src-release.sh @@ -77,6 +77,11 @@ do_proto_toplev() ver=$2 tool=$3 support_files=$4 + + echo "==> Cleaning sources." + find -name "*.orig" -exec rm {} \; + find -name "*.rej" -exec rm {} \; + echo "==> Making $package-$ver/" # Take out texinfo from a few places. sed -e '/^all\.normal: /s/\all-texinfo //' \ -- 2.34.1