aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:52:56 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-29 13:52:56 +0200
commit74b5e9ab48c16a3ce464a30dc69d007180ba0f2c (patch)
treef5c1c299cd6c754ed0d6c9580b0e0cf98b10abfa
parentre-add clang-9 again (diff)
downloadlibrewolf-linux-74b5e9ab48c16a3ce464a30dc69d007180ba0f2c.tar.gz
librewolf-linux-74b5e9ab48c16a3ce464a30dc69d007180ba0f2c.tar.bz2
librewolf-linux-74b5e9ab48c16a3ce464a30dc69d007180ba0f2c.zip
use symlinks-path for libclang
-rwxr-xr-xbinary_tarball/scripts/3_Configure_Source_Code.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/scripts/3_Configure_Source_Code.sh b/binary_tarball/scripts/3_Configure_Source_Code.sh
index 49ac61a..5911412 100755
--- a/binary_tarball/scripts/3_Configure_Source_Code.sh
+++ b/binary_tarball/scripts/3_Configure_Source_Code.sh
@@ -21,7 +21,7 @@ cat >${CI_PROJECT_DIR}/mozconfig <<END
ac_add_options --enable-application=browser
# to build on ubuntu and pick up clang
-ac_add_options --with-libclang-path="/usr/lib/${CARCH}-linux-gnu/libclang-cpp.so.9"
+ac_add_options --with-libclang-path="/usr/lib/llvm-9/lib"
ac_add_options --with-clang-path="/usr/bin/clang-9"
# This supposedly speeds up compilation (We test through dogfooding anyway)
bgstack15