This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 6fc12877e1 gnu: gtkd: Fix pkgconfig directory.
6fc12877e1 is described below
commit 6fc12877e114b35947695fd9d959208d7526a21a
Author: Efraim Flashner <[email protected]>
AuthorDate: Sat Jan 7 23:04:32 2023 +0200
gnu: gtkd: Fix pkgconfig directory.
* gnu/packages/dlang.scm (gtkd)[arguments]: Add make-flag to set the
pkgconfig directory correctly.
---
gnu/packages/dlang.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/dlang.scm b/gnu/packages/dlang.scm
index 462a61a29f..15680cb079 100644
--- a/gnu/packages/dlang.scm
+++ b/gnu/packages/dlang.scm
@@ -432,8 +432,8 @@ needed.")
#:make-flags
`("DC=ldc2"
,(string-append "prefix=" (assoc-ref %outputs "out"))
- ,(string-append "libdir=" (assoc-ref %outputs "out")
- "/lib"))
+ ,(string-append "libdir=" (assoc-ref %outputs "out") "/lib")
+ "pkgconfigdir=lib/pkgconfig")
#:phases
(modify-phases %standard-phases
(delete 'configure)