gnu: linux-pam: Switch to gexps.
* gnu/packages/linux.scm (linux-pam)[arguments]: Switch to gexps.master
parent
fda221c469
commit
1c179980fa
|
@ -1804,9 +1804,10 @@ which need to be installed separately.")
|
|||
;; ("cracklib" ,cracklib)
|
||||
))
|
||||
(arguments
|
||||
`(;; Most users, such as `shadow', expect the headers to be under
|
||||
(list
|
||||
;; Most users, such as `shadow', expect the headers to be under
|
||||
;; `security'.
|
||||
#:configure-flags (list (string-append "--includedir="
|
||||
#:configure-flags #~(list (string-append "--includedir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/include/security")
|
||||
;; explicit libdir for pkgconfig files
|
||||
|
@ -1819,9 +1820,9 @@ which need to be installed separately.")
|
|||
;; XXX: <rpc/rpc.h> is missing from glibc when
|
||||
;; cross-compiling, so we have to disable NIS
|
||||
;; support altogether.
|
||||
,@(if (%current-target-system)
|
||||
'("--disable-nis")
|
||||
'()))
|
||||
#$@(if (%current-target-system)
|
||||
#~("--disable-nis")
|
||||
#~()))
|
||||
|
||||
;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
|
||||
;; isn't available.
|
||||
|
|
Reference in New Issue