Skip to content

Commit

Permalink
Fix path for darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
yitzchak committed Dec 12, 2024
1 parent bf5aaed commit 8350ae8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/koga/ninja.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@

(defun wrap-with-env (configuration executable-name)
(if (reproducible-build configuration)
(format nil "LD_LIBRARY_PATH=~a ~a"
(format nil
#+darwin "DYLD_LIBRARY_PATH=~a ~a"
#-darwin "LD_LIBRARY_PATH=~a ~a"
(make-source "lib/" :variant) executable-name)
executable-name))

Expand Down

0 comments on commit 8350ae8

Please sign in to comment.