diff options
-rw-r--r-- | gnu/packages/linux.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 4bc547e832..fb29730bf3 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1824,6 +1824,16 @@ which need to be installed separately.") #~("--disable-nis") #~())) + #:phases (if (target-hurd?) + #~(modify-phases %standard-phases + (add-after 'unpack 'skip-pam-limits + (lambda _ + ;; 'pam_limits.c' uses <sys/prctl.h>, which is + ;; Linux-specific. Skip it on GNU/Hurd. + (substitute* "modules/Makefile.in" + (("pam_limits") ""))))) + #~%standard-phases) + ;; XXX: Tests won't run in chroot, presumably because /etc/pam.d ;; isn't available. #:tests? #f)) |