me
/
guix
Archived
1
0
Fork 0

gnu: pgpdump: Remove bogus DESTDIR usage.

* gnu/packages/gnupg.scm (pgpdump)[arguments]: Gexp.
Remove custom #:configure-flags, and DESTDIR from #:make-flags.
master
Tobias Geerinckx-Rice 2021-12-18 17:10:58 +01:00
parent 38085f0fbf
commit 478362c949
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 4 additions and 4 deletions

View File

@ -75,6 +75,7 @@
#:use-module (gnu packages xml)
#:use-module (gnu packages popt)
#:use-module (gnu packages xdisorg)
#:use-module (guix gexp)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix utils)
@ -1039,10 +1040,9 @@ them to transform your existing public key into a secret key.")
(base32 "080ayqqxb13ngpg6zvaipszwnjadafw3ni7w7gg189cmh3lab7cq"))))
(build-system gnu-build-system)
(arguments
`(#:tests? #f ; no make check
#:configure-flags (list "--prefix=/")
#:make-flags (list ,(string-append "CC=" (cc-for-target))
(string-append "DESTDIR=" (assoc-ref %outputs "out")))))
(list #:tests? #f ; no make check
#:make-flags
#~(list (string-append "CC=" #$(cc-for-target)))))
(inputs
(list zlib))
(home-page "https://www.mew.org/~kazu/proj/pgpdump/en/")