[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/03: gnu: shadow: Build without pam for the Hurd.
From: |
guix-commits |
Subject: |
02/03: gnu: shadow: Build without pam for the Hurd. |
Date: |
Tue, 26 Jan 2021 04:17:41 -0500 (EST) |
efraim pushed a commit to branch staging
in repository guix.
commit 4f8d5e63b2f83fc0b9297e874f03c8424303b488
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Tue Jan 26 10:23:04 2021 +0200
gnu: shadow: Build without pam for the Hurd.
* gnu/packages/admin.scm (shadow)[arguments]: Adjust configure-flags to
not use pam when building for the Hurd.
[inputs]: Only use linux-pam when not building for the Hurd.
---
gnu/packages/admin.scm | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index 87b0f36..e14b84f 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -676,7 +676,10 @@ hostname.")
`(;; Assume System V `setpgrp (void)', which is the default on GNU
;; variants (`AC_FUNC_SETPGRP' is not cross-compilation capable.)
#:configure-flags
- '("--with-libpam" "ac_cv_func_setpgrp_void=yes")
+ '(,@(if (hurd-target?)
+ '()
+ '("--with-libpam"))
+ "ac_cv_func_setpgrp_void=yes")
#:phases
(modify-phases %standard-phases
@@ -701,7 +704,10 @@ hostname.")
(for-each delete-file (find-files man "^groups\\."))
#t))))))
- (inputs `(("linux-pam" ,linux-pam)))
+ (inputs
+ `(,@(if (hurd-target?)
+ '()
+ `(("linux-pam" ,linux-pam)))))
(home-page "https://github.com/shadow-maint/shadow")
(synopsis "Authentication-related tools such as passwd, su, and login")
(description