diff options
author | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-05-07 18:19:34 +0200 |
---|---|---|
committer | Pierre Neidhardt <mail@ambrevar.xyz> | 2020-05-21 11:53:06 +0200 |
commit | 09db7f39ba9660f5f5a3f6cfa2e54ee6df8d9dd4 (patch) | |
tree | fc58e698d29a62e9791ed5f0994f1dae261eaafb /gnu | |
parent | c3f1f09586967c3fefbb280014a4d46b57786696 (diff) | |
download | patches-09db7f39ba9660f5f5a3f6cfa2e54ee6df8d9dd4.tar patches-09db7f39ba9660f5f5a3f6cfa2e54ee6df8d9dd4.tar.gz |
gnu: cl-dexador: Fix build with new sbcl-package->cl-source-package function.
* gnu/packages/lisp-xyz.scm (cl-dexador)[arguments]: Remove
'reset-gzip-timestamps phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/lisp-xyz.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/packages/lisp-xyz.scm b/gnu/packages/lisp-xyz.scm index 60fb4b0487..f0f28ae8f3 100644 --- a/gnu/packages/lisp-xyz.scm +++ b/gnu/packages/lisp-xyz.scm @@ -5867,8 +5867,8 @@ neat APIs and connection-pooling. It is meant to supersede Drakma.") ;; asdf-build-system/source has its own phases and does not inherit ;; from asdf-build-system/sbcl phases. (modify-phases %standard-phases/source - (add-after 'unpack 'fix-permissions - (lambda _ (make-file-writable "t/data/test.gz") #t))))))) + ;; Already done in SBCL package. + (delete 'reset-gzip-timestamps)))))) (define-public ecl-dexador (sbcl-package->ecl-package sbcl-dexador)) |