diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-11 17:46:18 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-11-11 17:48:04 +0100 |
commit | c746acf3a13983730cf640a901c97c893461aea4 (patch) | |
tree | e1f4a137743b2723fdf7fd083026de57dfd167ce | |
parent | e6e31a59eb3d400bc264b0f70a1631cf5a8ae9c9 (diff) | |
download | guix-c746acf3a13983730cf640a901c97c893461aea4.tar.gz guix-c746acf3a13983730cf640a901c97c893461aea4.zip |
gnu: eid-mw: Don't try to bootstrap twice.
* gnu/packages/security-token.scm (eid-mw)[arguments]: Replace the
build system's ‘bootstrap’ phase instead of creating another one.
-rw-r--r-- | gnu/packages/security-token.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/security-token.scm b/gnu/packages/security-token.scm index 09222b571a..45610c4801 100644 --- a/gnu/packages/security-token.scm +++ b/gnu/packages/security-token.scm @@ -136,7 +136,7 @@ readers and is needed to communicate with such devices through the (arguments `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'bootstrap + (replace 'bootstrap (lambda _ ;; configure.ac relies on ‘git --describe’ to get the version. ;; Patch it to just return the real version number directly. |