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)
|
;; ("cracklib" ,cracklib)
|
||||||
))
|
))
|
||||||
(arguments
|
(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'.
|
;; `security'.
|
||||||
#:configure-flags (list (string-append "--includedir="
|
#:configure-flags #~(list (string-append "--includedir="
|
||||||
(assoc-ref %outputs "out")
|
(assoc-ref %outputs "out")
|
||||||
"/include/security")
|
"/include/security")
|
||||||
;; explicit libdir for pkgconfig files
|
;; explicit libdir for pkgconfig files
|
||||||
|
@ -1819,9 +1820,9 @@ which need to be installed separately.")
|
||||||
;; XXX: <rpc/rpc.h> is missing from glibc when
|
;; XXX: <rpc/rpc.h> is missing from glibc when
|
||||||
;; cross-compiling, so we have to disable NIS
|
;; cross-compiling, so we have to disable NIS
|
||||||
;; support altogether.
|
;; support altogether.
|
||||||
,@(if (%current-target-system)
|
#$@(if (%current-target-system)
|
||||||
'("--disable-nis")
|
#~("--disable-nis")
|
||||||
'()))
|
#~()))
|
||||||
|
|
||||||
;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
|
;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
|
||||||
;; isn't available.
|
;; isn't available.
|
||||||
|
|
Reference in New Issue