summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-05-23 13:04:34 -0400
committerB. Stack <bgstack15@gmail.com>2022-05-23 13:04:34 -0400
commit6020b5245dbd01f46fc2279367814d0b3a258ce2 (patch)
tree7749bb87205bb8e31aa4ae241e4579272171a5d7
parentadd back all the LW patches (diff)
downloadlibrewolf-debian-6020b5245dbd01f46fc2279367814d0b3a258ce2.tar.gz
librewolf-debian-6020b5245dbd01f46fc2279367814d0b3a258ce2.tar.bz2
librewolf-debian-6020b5245dbd01f46fc2279367814d0b3a258ce2.zip
re-enable remove-branding-urlbar defuzz
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 66c47b9..efcb046 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -201,8 +201,8 @@ else
"${debian_dir}"/patches/librewolf/
awk -F'/' '{print "librewolf/"$NF}' "${git_source_dir}"/source/assets/patches.txt | \
sed -r -e 's@$@ -p1@' -e '/vpn-ad/d' >> "${debian_dir}"/patches/series
- # For 99.0 to fix this patch.
- test -n "" && cat <<EOF >"${debian_dir}/patches/librewolf/remove-branding-urlbar.patch"
+ # For 100.0 to fix this patch.
+ test -n "1" && cat <<EOF >"${debian_dir}/patches/librewolf/remove-branding-urlbar.patch"
--- a/browser/locales/en-US/browser/browser.ftl.orig 2022-03-22 12:57:21.330016999 -0400
+++ b/browser/locales/en-US/browser/browser.ftl 2022-03-22 13:01:42.740728393 -0400
@@ -543,7 +543,7 @@
@@ -239,7 +239,7 @@ EOF
sed -i -r -e '/(xmas)\.patch/s/^/#/;' "${debian_dir}"/patches/series
# Fixes to the LibreWolf patches for version 96.0.1.
# remove_addons.patch will be fixed when https://gitlab.com/librewolf-community/browser/source/-/merge_requests/10
- test -n "" && patch -p1 "${debian_dir}/patches/librewolf/remove_addons.patch" <<EOF
+ test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/remove_addons.patch" <<EOF
diff --git a/patches/remove_addons.patch b/patches/remove_addons.patch
index a6585ed..3487f6d 100644
--- a/patches/remove_addons.patch
bgstack15