Skip to content

Commit 8350ae8

Browse files
committed
Fix path for darwin
1 parent bf5aaed commit 8350ae8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/koga/ninja.lisp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66

77
(defun wrap-with-env (configuration executable-name)
88
(if (reproducible-build configuration)
9-
(format nil "LD_LIBRARY_PATH=~a ~a"
9+
(format nil
10+
#+darwin "DYLD_LIBRARY_PATH=~a ~a"
11+
#-darwin "LD_LIBRARY_PATH=~a ~a"
1012
(make-source "lib/" :variant) executable-name)
1113
executable-name))
1214

0 commit comments

Comments
 (0)