diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-12-11 01:00:03 +0100 |
commit | 6e336a8721b113b76d70e033443c69e21cae012a (patch) | |
tree | 746d5ad2e2fd002aef2094ce7bfce0d2c15176e1 /gnu/packages | |
parent | 52ffc0c44fd66b47591fb4dcc9f22ed9cc4c56d3 (diff) | |
download | guix-6e336a8721b113b76d70e033443c69e21cae012a.tar.gz guix-6e336a8721b113b76d70e033443c69e21cae012a.zip |
gnu: httping: Fix DESTDIR.
* gnu/packages/networking.scm (httping)[arguments]: Set PREFIX.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 41ea34dfbd..ac6cfb2a32 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -1972,8 +1972,7 @@ transmission protocol (SCTP) in a Go application.") (list fftw ncurses openssl)) (arguments `(#:make-flags (list ,(string-append "CC=" (cc-for-target)) - (string-append "DESTDIR=" (assoc-ref %outputs "out")) - "PREFIX=") + (string-append "PREFIX=" (assoc-ref %outputs "out"))) #:tests? #f)) ; no tests (home-page "https://www.vanheusden.com/httping/") (synopsis "Web server latency and throughput monitor") |