diff options
author | Martin Stransky <stransky@redhat.com> | 2019-04-01 10:27:34 +0200 |
---|---|---|
committer | Martin Stransky <stransky@redhat.com> | 2019-04-01 10:27:34 +0200 |
commit | 9ffa95d2a9e1b7d0b964090f88c5b4e3081ac9cf (patch) | |
tree | da2cf6bfbfe71bbd2a4a476b6ca943bc50926c0c | |
parent | Updated to 66.0.2 (Build 1), Added fixes for mozbz#1526243, mozbz#1540145 (diff) | |
download | librewolf-fedora-ff-9ffa95d2a9e1b7d0b964090f88c5b4e3081ac9cf.tar.gz librewolf-fedora-ff-9ffa95d2a9e1b7d0b964090f88c5b4e3081ac9cf.tar.bz2 librewolf-fedora-ff-9ffa95d2a9e1b7d0b964090f88c5b4e3081ac9cf.zip |
Fixed Bug 1694377 - remove the double leading underscores, by Evan Klitzke
-rw-r--r-- | firefox.spec | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/firefox.spec b/firefox.spec index b1968c7..fd618f4 100644 --- a/firefox.spec +++ b/firefox.spec @@ -666,14 +666,14 @@ desktop-file-install --dir %{buildroot}%{_datadir}/applications %{SOURCE29} %endif %{__rm} -rf %{buildroot}%{_bindir}/firefox %{__sed} -e 's/__DEFAULT_WAYLAND__/%{wayland_default}/' \ - -e 's,__PREFIX__,%{_prefix},g' %{SOURCE21} > %{buildroot}%{_bindir}/firefox + -e 's,/__PREFIX__,%{_prefix},g' %{SOURCE21} > %{buildroot}%{_bindir}/firefox %{__chmod} 755 %{buildroot}%{_bindir}/firefox %if 0%{?wayland_backend_default} -%{__sed} -e 's,__PREFIX__,%{_prefix},g' %{SOURCE30} > %{buildroot}%{_bindir}/firefox-x11 +%{__sed} -e 's,/__PREFIX__,%{_prefix},g' %{SOURCE30} > %{buildroot}%{_bindir}/firefox-x11 %{__chmod} 755 %{buildroot}%{_bindir}/firefox-x11 %else -%{__sed} -e 's,__PREFIX__,%{_prefix},g' %{SOURCE28} > %{buildroot}%{_bindir}/firefox-wayland +%{__sed} -e 's,/__PREFIX__,%{_prefix},g' %{SOURCE28} > %{buildroot}%{_bindir}/firefox-wayland %{__chmod} 755 %{buildroot}%{_bindir}/firefox-wayland %endif |