From: don Date: Fri, 10 Jul 2015 16:51:25 +0000 (+0000) Subject: Sort using LC_ALL=C to make builds reproducible. (Closes: #791851). X-Git-Tag: debian/2017.08.24-1~16 X-Git-Url: https://git.donarmstrong.com/?p=deb_pkgs%2Fscowl.git;a=commitdiff_plain;h=5411768de90ead51ab7c59474be0277a33f554ba Sort using LC_ALL=C to make builds reproducible. (Closes: #791851). Thanks to Reiner Herrmann. git-svn-id: svn+ssh://svn.donarmstrong.com/sites/don_svn/deb_pkgs/scowl/trunk@726 8f7917da-ec0b-0410-a553-b9b0e350d17e --- diff --git a/debian/changelog b/debian/changelog index 8cdc75e..5a33227 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,8 @@ scowl (7.1-2) UNRELEASED; urgency=low * Include the proper variant spelling into the proper language (Closes: #659841). Thanks to Drew Parsons. + * Sort using LC_ALL=C to make builds reproducible. (Closes: #791851). + Thanks to Reiner Herrmann. -- Don Armstrong Wed, 12 Oct 2011 15:04:24 -0700 diff --git a/debian/rules b/debian/rules index 50e46ca..8af85bf 100755 --- a/debian/rules +++ b/debian/rules @@ -92,8 +92,8 @@ build-stamp: fi;\ done;\ done;\ - echo "cat $$SPELLING-english$$SIZE.unsorted | sort -u | iconv -t 'utf-8' > $$SPELLING-english$$SIZE; rm $$SPELLING-english$$SIZE.unsorted";\ - cat $$SPELLING-english$$SIZE.unsorted | sort -u | iconv -f 'iso8859-1' -t 'utf-8' > $$SPELLING-english$$SIZE; rm $$SPELLING-english$$SIZE.unsorted;\ + echo "cat $$SPELLING-english$$SIZE.unsorted | LC_ALL=C sort -u | iconv -t 'utf-8' > $$SPELLING-english$$SIZE; rm $$SPELLING-english$$SIZE.unsorted";\ + cat $$SPELLING-english$$SIZE.unsorted | LC_ALL=C sort -u | iconv -f 'iso8859-1' -t 'utf-8' > $$SPELLING-english$$SIZE; rm $$SPELLING-english$$SIZE.unsorted;\ done;\ done