summaryrefslogtreecommitdiff
path: root/waterfox-g/debian/build.sh
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2024-01-25 16:10:06 -0500
committerB. Stack <bgstack15@gmail.com>2024-01-25 16:12:06 -0500
commit08279cfc6ceced8ad0b7a149a9361b5e8cca67c9 (patch)
tree40796a419adb592b9b9fc8538f2c33503875100e /waterfox-g/debian/build.sh
parentnew makemkv source tarball location (diff)
downloadstackrpms-08279cfc6ceced8ad0b7a149a9361b5e8cca67c9.tar.gz
stackrpms-08279cfc6ceced8ad0b7a149a9361b5e8cca67c9.tar.bz2
stackrpms-08279cfc6ceced8ad0b7a149a9361b5e8cca67c9.zip
wf-g 6.0.7 and new diff script for it
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