Merge branch 'master' into f30
This commit is contained in:
commit
b0154d22cc
@ -109,6 +109,7 @@ Source28: firefox-wayland.sh.in
|
|||||||
Source29: firefox-wayland.desktop
|
Source29: firefox-wayland.desktop
|
||||||
Source30: firefox-x11.sh.in
|
Source30: firefox-x11.sh.in
|
||||||
Source31: firefox-x11.desktop
|
Source31: firefox-x11.desktop
|
||||||
|
Source32: node-stdout-nonblocking-wrapper
|
||||||
|
|
||||||
# Build patches
|
# Build patches
|
||||||
Patch3: mozilla-build-arm.patch
|
Patch3: mozilla-build-arm.patch
|
||||||
@ -435,6 +436,8 @@ echo "ac_add_options --without-system-libvpx" >> .mozconfig
|
|||||||
echo "ac_add_options --disable-ion" >> .mozconfig
|
echo "ac_add_options --disable-ion" >> .mozconfig
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
echo 'export NODEJS="%{_buildrootdir}/bin/node-stdout-nonblocking-wrapper"' >> .mozconfig
|
||||||
|
|
||||||
# Remove executable bit to make brp-mangle-shebangs happy.
|
# Remove executable bit to make brp-mangle-shebangs happy.
|
||||||
chmod -x third_party/rust/itertools/src/lib.rs
|
chmod -x third_party/rust/itertools/src/lib.rs
|
||||||
|
|
||||||
@ -467,6 +470,9 @@ echo "Generate big endian version of config/external/icu/data/icud58l.dat"
|
|||||||
rm -f config/external/icu/data/icudt*l.dat
|
rm -f config/external/icu/data/icudt*l.dat
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
mkdir %{_buildrootdir}/bin || :
|
||||||
|
cp %{SOURCE32} %{_buildrootdir}/bin || :
|
||||||
|
|
||||||
# Update the various config.guess to upstream release for aarch64 support
|
# Update the various config.guess to upstream release for aarch64 support
|
||||||
find ./ -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
|
find ./ -name config.guess -exec cp /usr/lib/rpm/config.guess {} ';'
|
||||||
|
|
||||||
@ -921,6 +927,8 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
%changelog
|
%changelog
|
||||||
* Wed Jul 24 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-2
|
* Wed Jul 24 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-2
|
||||||
- Added fix for rhbz#1709840
|
- Added fix for rhbz#1709840
|
||||||
|
- Added node js wrapper to fix koji freezes
|
||||||
|
(https://pagure.io/fedora-infrastructure/issue/8026)
|
||||||
|
|
||||||
* Mon Jul 22 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-1
|
* Mon Jul 22 2019 Martin Stransky <stransky@redhat.com> - 68.0.1-1
|
||||||
- Updated to 68.0.1
|
- Updated to 68.0.1
|
||||||
|
2
node-stdout-nonblocking-wrapper
Executable file
2
node-stdout-nonblocking-wrapper
Executable file
@ -0,0 +1,2 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
exec /usr/bin/node "$@" 2>&1 | cat -
|
Loading…
Reference in New Issue
Block a user