Accepting request 822151 from home:bmwiedemann:branches:server:dns

Sort file lists to make package build reproducible

OBS-URL: https://build.opensuse.org/request/show/822151
OBS-URL: https://build.opensuse.org/package/show/server:dns/dnscrypt-proxy?expand=0&rev=28
This commit is contained in:
c unix 2020-07-23 21:03:35 +00:00 committed by Git OBS Bridge
parent 1e6073025e
commit 15cfb9547b
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Wed Jul 22 01:43:47 UTC 2020 - Bernhard Wiedemann <bwiedemann@suse.com>
- Sort file lists to make package build reproducible
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jun 30 12:00:00 UTC 2020 - cunix@mail.de Tue Jun 30 12:00:00 UTC 2020 - cunix@mail.de

View File

@ -33,8 +33,8 @@ if [[ -z "$vendor_licenses_dir" ]]
then then
echo Searching for licenses ... echo Searching for licenses ...
rm $licenses_file rm $licenses_file
find ./*/ -iname "license*" -fprint $licenses_file find ./*/ -iname "license*" | sort > $licenses_file
find ./*/ -iname "copying*" >> $licenses_file find ./*/ -iname "copying*" | sort >> $licenses_file
goahead=1 goahead=1
else else
echo "$vendor_licenses_dir" is not a directory. echo "$vendor_licenses_dir" is not a directory.