[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: dnsmasq: Fix cross-compilation.
From: |
guix-commits |
Subject: |
branch master updated: gnu: dnsmasq: Fix cross-compilation. |
Date: |
Tue, 29 Mar 2022 04:53:56 -0400 |
This is an automated email from the git hooks/post-receive script.
mothacehe pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new db7b8d1c9a gnu: dnsmasq: Fix cross-compilation.
db7b8d1c9a is described below
commit db7b8d1c9aa7df277695c5f07673ecddf88c9ab5
Author: Brian Kubisiak <brian@kubisiak.com>
AuthorDate: Fri Mar 25 19:01:25 2022 -0700
gnu: dnsmasq: Fix cross-compilation.
* gnu/packages/dns.scm (dnsmasq)[arguments]: Use PKG-CONFIG-FOR-TARGET.
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
---
gnu/packages/dns.scm | 1 +
1 file changed, 1 insertion(+)
diff --git a/gnu/packages/dns.scm b/gnu/packages/dns.scm
index afea1aaf86..dacada7897 100644
--- a/gnu/packages/dns.scm
+++ b/gnu/packages/dns.scm
@@ -309,6 +309,7 @@ prompt the user with the option to go with insecure DNS
only.")
(modify-phases %standard-phases (delete 'configure))
#:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
(string-append "CC=" ,(cc-for-target))
+ (string-append "PKG_CONFIG="
,(pkg-config-for-target))
"COPTS=\"-DHAVE_DBUS\"")
#:tests? #f)) ; no ‘check’ target
(home-page "http://www.thekelleys.org.uk/dnsmasq/doc.html")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: dnsmasq: Fix cross-compilation.,
guix-commits <=