summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-10-12 13:52:09 -0400
committerB. Stack <bgstack15@gmail.com>2021-10-12 13:52:09 -0400
commitbf2bc6b1aa1274af6777f42145e7e1552ead31fa (patch)
tree185fdf55486c54fdb2631d4fc1214fdd754da052
parentbump to 93.0 (diff)
downloadlibrewolf-debian-bf2bc6b1aa1274af6777f42145e7e1552ead31fa.tar.gz
librewolf-debian-bf2bc6b1aa1274af6777f42145e7e1552ead31fa.tar.bz2
librewolf-debian-bf2bc6b1aa1274af6777f42145e7e1552ead31fa.zip
fix mozilla-vpn-ad patch for dpkg only right now
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index fa8e84b..a5fd7be 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -231,6 +231,8 @@ librewolf/stop-undesired-requests.patch -p1
librewolf/allow_dark_preference_with_rfp.patch -p1
librewolf/about-dialog.patch -p1
EOF
+ # just for version 93.0 until https://gitlab.com/librewolf-community/browser/common/-/merge_requests/7
+ sed -i -r -e '/-image-/s/small/large/g;' "${debian_dir}/patches/librewolf/mozilla-vpn-ad.patch"
fi
# observe that build-with-libstdc++-7 is disabled for this dpkg. Debian builds Firefox with gcc, not clang.
bgstack15