Accepting request 822511 from server:dns

Sort file lists to make package build reproducible

OBS-URL: https://build.opensuse.org/request/show/822511
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/dnscrypt-proxy?expand=0&rev=7
This commit is contained in:
Dominique Leuenberger 2020-07-24 08:09:24 +00:00 committed by Git OBS Bridge
commit d1bcc30552
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

View File

@ -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.