summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-06-27 16:11:02 -0400
committerB. Stack <bgstack15@gmail.com>2022-06-27 16:11:02 -0400
commit35e2f7c59e549e8e88aab8c44a5363354ca6ffbf (patch)
tree839977a862981e1cc700ba4bfe0055d8cc03603e /scripts/prep-librewolf-dpkg.sh
parentre-enable remove-branding-urlbar defuzz (diff)
downloadlibrewolf-debian-35e2f7c59e549e8e88aab8c44a5363354ca6ffbf.tar.gz
librewolf-debian-35e2f7c59e549e8e88aab8c44a5363354ca6ffbf.tar.bz2
librewolf-debian-35e2f7c59e549e8e88aab8c44a5363354ca6ffbf.zip
v101.0.1 initial commit
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index efcb046..e6fa6fe 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -215,7 +215,7 @@ else
# A label shown above the search suggestions group in the urlbar results. It
# should use sentence case.
EOF
- patch -p1 "${debian_dir}/patches/librewolf/remove-organization-policy-banner.patch" <<EOF
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/remove-organization-policy-banner.patch" <<EOF
diff --git a/patches/ui-patches/remove-organization-policy-banner.patch b/patches/ui-patches/remove-organization-policy-banner.patch
index 688c17c..1475de9 100644
--- a/patches/ui-patches/remove-organization-policy-banner.patch
@@ -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 "1" && patch -p1 "${debian_dir}/patches/librewolf/remove_addons.patch" <<EOF
+ test -n "" && 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