summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-06-20 14:51:52 -0400
committerB. Stack <bgstack15@gmail.com>2024-06-20 14:51:52 -0400
commitfd868549e3640d976dda18f486da0392191ea5d3 (patch)
tree6a860959724e72904c579954f249d8a03ed198df /scripts/prep-librewolf-dpkg.sh
parent126.0 with defuzz a patch (diff)
downloadlibrewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.tar.gz
librewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.tar.bz2
librewolf-debian-fd868549e3640d976dda18f486da0392191ea5d3.zip
127.0 rc1
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 dba3b95..cd0eba6 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -202,7 +202,7 @@ else
sed -r -e 's@$@ -p1@' -e '/vpn-ad/d' >> "${debian_dir}/patches/series"
#echo "librewolf/webrender_ffi.patch -p1" >> "${debian_dir}/patches/series"
# added 126.0 ; just defuzzing this patch
- test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/encoding_rs.patch" < "${scripts_dir}/126.0_defuzz-encoding_rs.patch"
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/encoding_rs.patch" < "${scripts_dir}/126.0_defuzz-encoding_rs.patch"
# added 120.0.1; just defuzzing this patch
test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/rust-gentoo-musl.patch" <<'EOF'
--- a/librewolf/rust-gentoo-musl.patch 2023-12-05 09:05:23.029244795 -0500
@@ -544,7 +544,7 @@ EOF
"profiles",
EOF
# added 109.0 to patch for debian 109.0 until defuzz-109.0 gets merged
- test -n "1" && patch -p1 "${debian_dir}/patches/librewolf/disable-data-reporting-at-compile-time.patch" <<'EOF'
+ test -n "" && patch -p1 "${debian_dir}/patches/librewolf/disable-data-reporting-at-compile-time.patch" <<'EOF'
diff --git a/patches/disable-data-reporting-at-compile-time.patch b/patches/disable-data-reporting-at-compile-time.patch
index 3702402..f4a4315 100644
--- a/patches/disable-data-reporting-at-compile-time.patch
bgstack15