diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-11 17:43:37 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-03-11 18:06:56 +0100 |
commit | 444a38b99134a8cf1bf2c0d5c3b91f40cd193433 (patch) | |
tree | 277de98035b817c79d24faa4f941dd7a01c2fafe /gnu/packages | |
parent | 36c716e1c5b1d6ec1cc4cc34af0734acc8289f58 (diff) | |
download | guix-444a38b99134a8cf1bf2c0d5c3b91f40cd193433.tar.gz guix-444a38b99134a8cf1bf2c0d5c3b91f40cd193433.zip |
gnu: memkind: Remove duplicate COPYING file.
* gnu/packages/disk.scm (memkind)[arguments]: Add the standard
"--docdir=" location to #:configure-flags.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/disk.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 26abe8d66a..ed112f2ec2 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -1141,7 +1141,10 @@ that support this feature).") ("automake" ,automake) ("libtool" ,libtool))) (arguments - `(#:tests? #f ; Tests require a NUMA-enabled system. + `(#:configure-flags + (list (string-append "--docdir=" (assoc-ref %outputs "out") + "/share/doc/" ,name "-" ,version)) + #:tests? #f ; Tests require a NUMA-enabled system. #:phases (modify-phases %standard-phases (add-before 'build 'autogen-jemalloc |