diff options
| author | Sergey Trofimov <sarg@sarg.org.ru> | 2025-12-03 14:38:32 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-12-03 15:03:11 +0100 |
| commit | f21bc13b5c1c176f716ec4e6426984b721b02af8 (patch) | |
| tree | 4ef368bdada9bdbd9bd8e1f86af1783fc080caa7 /gnu | |
| parent | 49491f8d5d8e16a5015d3cc7fd08e6cce5b204f6 (diff) | |
gnu: pamtester: Fix build with gcc@14.
* gnu/packages/authentication.scm (pamtester)
[arguments]<#:phases>{force-reconfigure}: New phase.
[native-inputs]: Add autoconf, automake, libtool.
Fixes: guix/guix#4640
Change-Id: I454b6b134a89220a97b0799e2041e459e64efaff
Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/authentication.scm | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm index 11da1bc7589..c7f7d819734 100644 --- a/gnu/packages/authentication.scm +++ b/gnu/packages/authentication.scm | |||
| @@ -221,8 +221,13 @@ YubiKey into your existing user authentication infrastructure.") | |||
| 221 | (sha256 | 221 | (sha256 |
| 222 | (base32 "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3")))) | 222 | (base32 "1mdj1wj0adcnx354fs17928yn2xfr1hj5mfraq282dagi873sqw3")))) |
| 223 | (build-system gnu-build-system) | 223 | (build-system gnu-build-system) |
| 224 | (arguments | ||
| 225 | `(#:phases | ||
| 226 | (modify-phases %standard-phases | ||
| 227 | (add-after 'unpack 'force-reconfigure | ||
| 228 | (lambda _ (delete-file "configure")))))) | ||
| 224 | (native-inputs | 229 | (native-inputs |
| 225 | (list pkg-config)) | 230 | (list autoconf automake libtool pkg-config)) |
| 226 | (inputs | 231 | (inputs |
| 227 | (list linux-pam)) | 232 | (list linux-pam)) |
| 228 | (home-page "https://pamtester.sourceforge.net/") | 233 | (home-page "https://pamtester.sourceforge.net/") |
