summaryrefslogtreecommitdiff
path: root/firefox.spec
diff options
context:
space:
mode:
authorJan Horak <jhorak@redhat.com>2020-01-07 13:03:35 +0100
committerJan Horak <jhorak@redhat.com>2020-01-07 13:03:35 +0100
commit1a740613299bd92f88268e8848bd7be6c67f6133 (patch)
tree42798ea8458fd777e2f9b55cbfd2891ddd426f57 /firefox.spec
parentMerge branch 'master' into f31 (diff)
downloadlibrewolf-fedora-ff-1a740613299bd92f88268e8848bd7be6c67f6133.tar.gz
librewolf-fedora-ff-1a740613299bd92f88268e8848bd7be6c67f6133.tar.bz2
librewolf-fedora-ff-1a740613299bd92f88268e8848bd7be6c67f6133.zip
Do not change config.guess in the third_party/rust subdir because it breaks checksums
Diffstat (limited to 'firefox.spec')
-rw-r--r--firefox.spec3
1 files changed, 2 insertions, 1 deletions
diff --git a/firefox.spec b/firefox.spec
index 75cb865..2e58c3c 100644
--- a/firefox.spec
+++ b/firefox.spec
@@ -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
bgstack15