diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-07 14:48:18 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-07 22:52:44 +0100 |
commit | 8791ef7cf667b44150c0e7e40655c90d79598353 (patch) | |
tree | cb28aaa73ca908210622e5101c80de9f96088e09 /gnu/packages/disk.scm | |
parent | b0afcce39080a4cd51d01bc83419fb440e865397 (diff) |
gnu: duperemove: Correctly report version.
* gnu/packages/disk (duperemove)[arguments]: Set ‘VER’ in #:make-flags.
Diffstat (limited to 'gnu/packages/disk.scm')
-rw-r--r-- | gnu/packages/disk.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index 34cfe0a56e..1e31ad884e 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -581,7 +581,9 @@ a card with a smaller capacity than stated.") (modify-phases %standard-phases (delete 'configure)) ; no configure script #:make-flags (list (string-append "PREFIX=" %output) - (string-append "CC=" ,(cc-for-target))))) + (string-append "CC=" ,(cc-for-target)) + ;; Set to <next release>dev by default. + (string-append "VER=" ,version)))) (home-page "https://github.com/markfasheh/duperemove") (synopsis "Tools for de-duplicating file system data") (description "Duperemove is a simple tool for finding duplicated extents |