mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: linux-pam: Install headers under $includedir/security.
* gnu/packages/linux.scm (linux-pam): Add `--includedir' configure flag.
This commit is contained in:
parent
10d3ab1073
commit
c134056a9b
1 changed files with 9 additions and 3 deletions
|
@ -235,9 +235,15 @@ (define-public linux-pam
|
|||
;; ("cracklib" ,cracklib)
|
||||
))
|
||||
(arguments
|
||||
;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
|
||||
;; isn't available.
|
||||
'(#:tests? #f))
|
||||
'(;; Most users, such as `shadow', expect the headers to be under
|
||||
;; `security'.
|
||||
#:configure-flags (list (string-append "--includedir="
|
||||
(assoc-ref %outputs "out")
|
||||
"/include/security"))
|
||||
|
||||
;; XXX: Tests won't run in chroot, presumably because /etc/pam.d
|
||||
;; isn't available.
|
||||
#:tests? #f))
|
||||
(home-page "http://www.linux-pam.org/")
|
||||
(synopsis "Pluggable authentication modules for Linux")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue