Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/koga/configure.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@
:type pathname
:documentation "The directory under which to install shared Clasp files.")
(pkgconfig-path :accessor pkgconfig-path
:initform #P"/usr/lib/pkgconfig/"
:initform #P"/usr/local/lib/pkgconfig/"
:initarg :pkgconfig-path
:type pathname
:documentation "The directory under which to install the pkgconfig files.")
Expand Down
4 changes: 3 additions & 1 deletion src/koga/scripts.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,9 @@ Libs: ~a -lclasp~%"
(format nil "-I~a -I~a"
(root :install-share)
(make-source "include/" :install-share))
""
(format nil "-L~a -Wl,-rpath,~a"
(root :install-dylib)
(root :install-dylib))
:remove-include t))

(defmethod print-prologue (configuration (name (eql :libclasp-pc-variant)) output-stream)
Expand Down
1 change: 1 addition & 0 deletions src/koga/setup.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ writing the build and variant outputs."
:code #P""
:install-bin (bin-path *configuration*)
:install-share (share-path *configuration*)
:install-dylib (dylib-path *configuration*)
:install-lib (lib-path *configuration*)
:install-generated install-generated
:package-bin (resolve-package-path (bin-path *configuration*))
Expand Down
Loading