summaryrefslogtreecommitdiff
path: root/scripts/prep-librewolf-dpkg.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/prep-librewolf-dpkg.sh')
-rwxr-xr-xscripts/prep-librewolf-dpkg.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/prep-librewolf-dpkg.sh b/scripts/prep-librewolf-dpkg.sh
index 920e5ad..7feb35b 100755
--- a/scripts/prep-librewolf-dpkg.sh
+++ b/scripts/prep-librewolf-dpkg.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# File: prep-librewolf-dpkg.sh
# Location: https://gitlab.com/bgstack15/librewolf-linux.git
-# Latest supported version: librewolf-100.0-1
+# Latest supported version: librewolf-104.0-1
# Author: bgstack15
# SPDX-License-Identifier: CC-BY-SA-4.0
# Startdate: 2020-11-29
@@ -336,9 +336,10 @@ sed -i -r -e '2{
}
2{
iexport MOZ_NOSPAM=1
- iexport MACH_USE_SYSTEM_PYTHON=1
}
' "${debian_dir}"/rules
+ # removed from the "2{" block at end, for version 104.0
+ #iexport MACH_USE_SYSTEM_PYTHON=1
fi
bgstack15