diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-07 23:51:59 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-01-07 02:41:16 +0100 |
commit | f17f3e59f8bcabe97fa6d314e6fd26dc4b2c5a7d (patch) | |
tree | c61d5a622cbaa3cc82e3aebfe6cbe3c07d5a3c89 /gnu | |
parent | f1dcd661f8dd1e7f1745b44240b19b31d9b89083 (diff) |
gnu: ndctl: Fix version reporting.
* gnu/packages/disk.scm (ndctl)[arguments]: Add a 'fix-version phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/disk.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/disk.scm b/gnu/packages/disk.scm index ac8b561e79..9c25d940eb 100644 --- a/gnu/packages/disk.scm +++ b/gnu/packages/disk.scm @@ -833,6 +833,11 @@ passphrases.") (lambda _ (substitute* "util/parse-configs.c" (("iniparser/") "")))) + (add-after 'unpack 'fix-version + ;; Our VERSION's always better than the build's poor guess. + (lambda _ + (with-output-to-file "version" + (lambda _ (display #$version))))) (add-after 'unpack 'patch-FHS-file-names (lambda _ (substitute* "git-version-gen" |