Skip to content

Commit

Permalink
ld_library_path
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Oct 31, 2024
1 parent 9f5518e commit b14ee7c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/init-forge.el
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@
(let ((debug-on-error (if (and debug-on-error (getenv "ci_tests"))
(progn
(message "Temporarily disable `debug-on-error': `sqlite3-api' cannot be loaded when running in CI")
(message "LD_LIBRARY_PATH=%s" (getenv "LD_LIBRARY_PATH"))
(setenv "LD_LIBRARY_PATH" (concat "/usr/lib/x86_64-linux-gnu"
(when (getenv "LD_LIBRARY_PATH")
(concat ":" (getenv "LD_LIBRARY_PATH")))))
(message "LD_LIBRARY_PATH=%s" (getenv "LD_LIBRARY_PATH"))
t)
debug-on-error)))
(use-package sqlite3)))
Expand Down

0 comments on commit b14ee7c

Please sign in to comment.