gnu: skalibs: Fix non-reproducibility issue.
* gnu/packages/skarnet.scm (skalibs)[arguments]: In 'reproducible' phase, insert a 'sort' call in "Makefile". Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
cdba3a8469
commit
73138fd146
|
@ -47,8 +47,8 @@
|
||||||
;; Sort source files deterministically so that the *.a
|
;; Sort source files deterministically so that the *.a
|
||||||
;; and *.so files are reproducible.
|
;; and *.so files are reproducible.
|
||||||
(substitute* "Makefile"
|
(substitute* "Makefile"
|
||||||
(("\\$\\(ALL_SRCS:%.c=%.o\\)")
|
(("\\$\\(wildcard src/lib\\*/\\*.c\\)")
|
||||||
"$(sort $(ALL_SRCS:%.c=%.o))"))
|
"$(sort $(wildcard src/lib*/*.c))"))
|
||||||
#t)))))
|
#t)))))
|
||||||
(home-page "http://skarnet.org/software/skalibs/")
|
(home-page "http://skarnet.org/software/skalibs/")
|
||||||
(synopsis "Platform abstraction libraries for skarnet.org software")
|
(synopsis "Platform abstraction libraries for skarnet.org software")
|
||||||
|
|
Reference in New Issue