diff --git a/dnscrypt-proxy.changes b/dnscrypt-proxy.changes index af10e44..b3ceb5d 100644 --- a/dnscrypt-proxy.changes +++ b/dnscrypt-proxy.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed Jul 22 01:43:47 UTC 2020 - Bernhard Wiedemann + +- Sort file lists to make package build reproducible + ------------------------------------------------------------------- Tue Jun 30 12:00:00 UTC 2020 - cunix@mail.de diff --git a/find_licenses.sh b/find_licenses.sh index 0e4aba7..457f9f9 100644 --- a/find_licenses.sh +++ b/find_licenses.sh @@ -33,8 +33,8 @@ if [[ -z "$vendor_licenses_dir" ]] then echo Searching for licenses ... rm $licenses_file - find ./*/ -iname "license*" -fprint $licenses_file - find ./*/ -iname "copying*" >> $licenses_file + find ./*/ -iname "license*" | sort > $licenses_file + find ./*/ -iname "copying*" | sort >> $licenses_file goahead=1 else echo "$vendor_licenses_dir" is not a directory.