diff options
author | Danny Milosavljevic <dannym@scratchpost.org> | 2017-07-06 10:39:07 +0200 |
---|---|---|
committer | Danny Milosavljevic <dannym@scratchpost.org> | 2017-07-06 12:18:28 +0200 |
commit | 6b994438b049e91d7f950c2aa8abaae8d6112cf3 (patch) | |
tree | 2d6bb512a3610b333598752aa76a0d7d5e44bfc7 /gnu/packages | |
parent | 5bc42e1a468ce84d8adfa4be01a299c1a430c9cc (diff) | |
download | guix-6b994438b049e91d7f950c2aa8abaae8d6112cf3.tar guix-6b994438b049e91d7f950c2aa8abaae8d6112cf3.tar.gz |
gnu: ghostscript: Don't write CreationDate and ModDate header entries.
Followup to a64b174751a9fa76375d35d2f2a47a4c93ce0206.
* gnu/packages/ghostscript.scm (ghostscript)[source]: Don't write CreationDate
and ModDate header entries.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/ghostscript.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/ghostscript.scm b/gnu/packages/ghostscript.scm index d4e78c1223..b9ba1c081a 100644 --- a/gnu/packages/ghostscript.scm +++ b/gnu/packages/ghostscript.scm @@ -153,9 +153,9 @@ printing, and psresize, for adjusting page sizes.") (for-each delete-file-recursively '("freetype" "jbig2dec" "jpeg" "lcms2" "libpng" "tiff" "zlib")) - ;; Get rid of timestamps. - (substitute* "base/mkromfs.c" - (("time\\(NULL\\)") "0U")))))) + ;; Get rid of timestamps (remove /CreationDate and /ModDate). + (substitute* "devices/vector/gdevpdf.c" + ((", but we do the same") "*/ if (0) /*")))))) (build-system gnu-build-system) (outputs '("out" "doc")) ;19 MiB of HTML/PS doc + examples (arguments |