guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/14: gnu: pgpdump: Remove bogus DESTDIR usage.


From: guix-commits
Subject: 04/14: gnu: pgpdump: Remove bogus DESTDIR usage.
Date: Sat, 18 Dec 2021 11:40:20 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 478362c949eda7b397c971bd2a7eb502694dfc34
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sat Dec 18 17:10:58 2021 +0100

    gnu: pgpdump: Remove bogus DESTDIR usage.
    
    * gnu/packages/gnupg.scm (pgpdump)[arguments]: Gexp.
    Remove custom #:configure-flags, and DESTDIR from #:make-flags.
---
 gnu/packages/gnupg.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 85042db..7706688 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -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/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]