aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2024-06-03 16:25:08 -0400
committerAdam Harrison <adamdharrison@gmail.com>2024-06-03 16:25:08 -0400
commit5343f4820b5acf49da65b1ea635d2f42d0292c16 (patch)
tree568b8a82b961673d3c19bb764e05d0a413e8635d
parent22152f16b4d4da511dfc25a6dacc194419cacce6 (diff)
downloadlite-xl-plugin-manager-5343f4820b5acf49da65b1ea635d2f42d0292c16.tar.gz
lite-xl-plugin-manager-5343f4820b5acf49da65b1ea635d2f42d0292c16.zip
Added in searchpath for lib64, which is where libraries get installed sometimes.
-rwxr-xr-xbuild.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.sh b/build.sh
index ae162a6..f996aae 100755
--- a/build.sh
+++ b/build.sh
@@ -9,7 +9,7 @@
SRCS="src/*.c"
COMPILE_FLAGS="$CFLAGS -Ilib/prefix/include" # We specifically rename this and LDFLAGS, because exotic build environments export these to subprcoesses.
-LINK_FLAGS="$LDFLAGS -lm -Llib/prefix/lib" # And ideally we don't want to mess with the underlying build processes, unless we're explicit about it.
+LINK_FLAGS="$LDFLAGS -lm -Llib/prefix/lib -Llib/prefix/lib64" # And ideally we don't want to mess with the underlying build processes, unless we're explicit about it.
[[ "$@" == "clean" ]] && rm -rf lib/libgit2/build lib/zlib/build lib/libzip/build lib/mbedtls/build lib/prefix lua $BIN *.exe src/lpm.luac src/lpm.lua.c && exit 0
cmake --version >/dev/null 2>/dev/null || { echo "Please ensure that you have cmake installed." && exit -1; }