diff options
author | Arun Isaac <arunisaac@systemreboot.net> | 2018-02-24 17:00:22 +0530 |
---|---|---|
committer | Arun Isaac <arunisaac@systemreboot.net> | 2018-02-24 17:02:43 +0530 |
commit | 952a20d2a2ca8f39493df40ee2fd52e12442aa7c (patch) | |
tree | f3c76d375c30bdfbbfb64a297c390918120ae791 /gnu/packages/crypto.scm | |
parent | 8492334dc9ba621151e8e21e24a1103dca3e23d4 (diff) | |
download | patches-952a20d2a2ca8f39493df40ee2fd52e12442aa7c.tar patches-952a20d2a2ca8f39493df40ee2fd52e12442aa7c.tar.gz |
gnu: rhash: Remove `outputs' argument from phases.
* gnu/packages/crypto.scm (rhash): Remove unnecessary `outputs' argument from
custom phases.
Diffstat (limited to 'gnu/packages/crypto.scm')
-rw-r--r-- | gnu/packages/crypto.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/crypto.scm b/gnu/packages/crypto.scm index 9ad369a460..695f6ca088 100644 --- a/gnu/packages/crypto.scm +++ b/gnu/packages/crypto.scm @@ -692,16 +692,16 @@ BLAKE.") (string-append (assoc-ref outputs "out") "/etc"))) #t)) (add-after 'build 'build-library - (lambda* (#:key outputs make-flags #:allow-other-keys) + (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "lib-shared" make-flags))) (add-after 'install 'install-library - (lambda* (#:key outputs make-flags #:allow-other-keys) + (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "install-lib-shared" make-flags) (apply invoke "make" "-C" "librhash" "install-headers" "install-so-link" make-flags))) (add-after 'check 'check-library - (lambda* (#:key outputs make-flags #:allow-other-keys) + (lambda* (#:key make-flags #:allow-other-keys) (apply invoke "make" "test-shared-lib" make-flags)))))) (home-page "https://sourceforge.net/projects/rhash/") (synopsis "Utility for computing hash sums") |