gnu: zstd: Follow GNU conventions for make variables.

* gnu/packages/compression.scm (zstd)[arguments]: Use lowercase ones
where possible.
This commit is contained in:
Tobias Geerinckx-Rice 2020-06-30 19:38:25 +02:00
parent 2e8025154d
commit 93a86ed72f
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -1399,9 +1399,9 @@ (define-public zstd
#t))))
#:make-flags
(list "CC=gcc"
(string-append "PREFIX=" (assoc-ref %outputs "out"))
(string-append "LIBDIR=" (assoc-ref %outputs "lib") "/lib")
(string-append "INCLUDEDIR=" (assoc-ref %outputs "lib") "/include")
(string-append "prefix=" (assoc-ref %outputs "out"))
(string-append "libdir=" (assoc-ref %outputs "lib") "/lib")
(string-append "includedir=" (assoc-ref %outputs "lib") "/include")
;; Skip auto-detection of, and creating a dependency on, the build
;; environment's xz for what amounts to a dubious feature anyway.
"HAVE_LZMA=0"