gnu: clisp: Remove timestamps.
* gnu/packages/lisp.scm (clisp)[arguments]: Add "remove-timestamps" phase to remove "__DATE__" and "__TIME__".
This commit is contained in:
parent
636c77d066
commit
c26ba570cc
|
@ -221,6 +221,11 @@ supporting ASDF, Sockets, Gray streams, MOP, and other useful components.")
|
||||||
(substitute* '("src/clisp-link.in")
|
(substitute* '("src/clisp-link.in")
|
||||||
(("/bin/pwd") "pwd"))
|
(("/bin/pwd") "pwd"))
|
||||||
#t))
|
#t))
|
||||||
|
(add-after 'unpack 'remove-timestamps
|
||||||
|
(lambda _
|
||||||
|
(substitute* "src/constobj.d"
|
||||||
|
(("__DATE__ __TIME__") "\"1\""))
|
||||||
|
#t))
|
||||||
(add-before 'build 'chdir-to-source
|
(add-before 'build 'chdir-to-source
|
||||||
(lambda _
|
(lambda _
|
||||||
;; We are supposed to call make under the src sub-directory.
|
;; We are supposed to call make under the src sub-directory.
|
||||||
|
|
Loading…
Reference in New Issue