mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ndctl: Fix version reporting.
* gnu/packages/disk.scm (ndctl)[arguments]: Add a 'fix-version phase.
This commit is contained in:
parent
f1dcd661f8
commit
f17f3e59f8
1 changed files with 5 additions and 0 deletions
|
@ -833,6 +833,11 @@ (define-public ndctl
|
|||
(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"
|
||||
|
|
Loading…
Reference in a new issue