Do not change config.guess in the third_party/rust subdir because it breaks checksums

This commit is contained in:
Jan Horak 2020-01-07 13:03:35 +01:00
parent 86a98315a0
commit 1a74061329
2 changed files with 8 additions and 1 deletions

View File

@ -501,7 +501,8 @@ mkdir %{_buildrootdir}/bin || :
cp %{SOURCE32} %{_buildrootdir}/bin || :
# Update the various config.guess to upstream release for aarch64 support
find ./ -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
# Do not update config.guess in the ./third_party/rust because that would break checksums
find ./ -path ./third_party/rust -prune -o -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
MOZ_OPT_FLAGS=$(echo "%{optflags}" | %{__sed} -e 's/-Wall//')
#rhbz#1037063

File diff suppressed because one or more lines are too long