mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: xscreensaver: Don't read /proc/interrupts at configure time.
Fixes a bug whereby, on some machines, ./configure would fail with: Warning: Checking of /proc/interrupts was requested, but it's bogus. * gnu/packages/xdisorg.scm (xscreensaver)[arguments]: Pass '--without-proc-interrupts'.
This commit is contained in:
parent
f2d86db81d
commit
e8ed95ddf8
1 changed files with 7 additions and 1 deletions
|
@ -1655,7 +1655,13 @@ (define-public xscreensaver
|
|||
(("@GTK_DATADIR@") "@datadir@")
|
||||
(("@PO_DATADIR@") "@datadir@"))
|
||||
#t)))
|
||||
#:configure-flags '("--with-pam" "--with-proc-interrupts"
|
||||
#:configure-flags '("--with-pam"
|
||||
|
||||
;; Don't check /proc/interrupts in the build
|
||||
;; environment to avoid non-deterministic failures
|
||||
;; of the 'configure' script.
|
||||
"--without-proc-interrupts"
|
||||
|
||||
"--without-readdisplay")
|
||||
#:make-flags (list (string-append "AD_DIR="
|
||||
(assoc-ref %outputs "out")
|
||||
|
|
Loading…
Reference in a new issue