summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/build.sh
diff options
context:
space:
mode:
Diffstat (limited to 'waterfox-g/debian/build.sh')
-rwxr-xr-xwaterfox-g/debian/build.sh6
1 files changed, 1 insertions, 5 deletions
diff --git a/waterfox-g/debian/build.sh b/waterfox-g/debian/build.sh
index b7a1f9e..99fc473 100755
--- a/waterfox-g/debian/build.sh
+++ b/waterfox-g/debian/build.sh
@@ -27,11 +27,7 @@ export NASM=/usr/lib/nasm-mozilla/bin/nasm
fi
# For successfull LTO build, we need to use matching LLVM version
-if test `lsb_release -sc` = "bionic" || test `lsb_release -sc` = "focal" || test `lsb_release -sc` = "buster" || test `lsb_release -sc` = "bullseye"; then
-export PATH=/usr/lib/llvm-13/bin/:$PATH
-fi
-
-if test `lsb_release -sc` = "jammy"; then
+if test `lsb_release -sc` = "bionic" || test `lsb_release -sc` = "buster" || test `lsb_release -sc` = "bullseye" || test `lsb_release -sc` = "jammy" || test `lsb_release -sc` = "focal"; then
export PATH=/usr/lib/llvm-15/bin/:$PATH
fi
bgstack15