gnu: lsof: Return #t from all phases.
* gnu/packages/lsof.scm (lsof)[arguments]: Return #t from phases.
This commit is contained in:
parent
b9ffa82b96
commit
6f6f9ef0ce
|
@ -73,14 +73,16 @@
|
||||||
(add-after 'configure 'patch-timestamps
|
(add-after 'configure 'patch-timestamps
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("`date`") "`date --date=@1`"))))
|
(("`date`") "`date --date=@1`"))
|
||||||
|
#t))
|
||||||
(add-before 'check 'disable-failing-tests
|
(add-before 'check 'disable-failing-tests
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "tests/Makefile"
|
(substitute* "tests/Makefile"
|
||||||
;; Fails with ‘ERROR!!! client gethostbyaddr() failure’.
|
;; Fails with ‘ERROR!!! client gethostbyaddr() failure’.
|
||||||
(("(STDTST=.*) LTsock" _ prefix) prefix)
|
(("(STDTST=.*) LTsock" _ prefix) prefix)
|
||||||
;; Fails without access to a remote NFS server.
|
;; Fails without access to a remote NFS server.
|
||||||
(("(OPTTST=.*) LTnfs" _ prefix) prefix))))
|
(("(OPTTST=.*) LTnfs" _ prefix) prefix))
|
||||||
|
#t))
|
||||||
(replace 'check
|
(replace 'check
|
||||||
(lambda _
|
(lambda _
|
||||||
(with-directory-excursion "tests"
|
(with-directory-excursion "tests"
|
||||||
|
|
Loading…
Reference in New Issue