diff options
| author | Leo Nikkilä <hello@lnikki.la> | 2026-03-14 16:06:59 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-14 16:11:05 +0100 |
| commit | f4298f390b787411acc6587e0c5e91e89644469a (patch) | |
| tree | fa23f178ff451ef1fe50b8f61f97ee36de131bb2 /gnu/packages/admin.scm | |
| parent | 29f630cb3e8d1e39775b31e57e0d8e89c8ebc5fb (diff) | |
gnu: audit: Build with aarch64 and arm support.
* gnu/packages/admin.scm (audit)[arguments]<#:configure-flags>: Add
"--with-aarch64" when building for aarch64. Similarly for armhf.
Change-Id: I7577fb74f879cb560e21801cbe9e214ce3419e09
Co-authored-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages/admin.scm')
| -rw-r--r-- | gnu/packages/admin.scm | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm index f978eafcb3f..c493b555116 100644 --- a/gnu/packages/admin.scm +++ b/gnu/packages/admin.scm @@ -3835,8 +3835,15 @@ platform-specific methods.") "0y5w8pl91xapi49ih1pw7h48lac201cj7fm89hkklmzi9m2715gx")))) (build-system gnu-build-system) (arguments - `(#:configure-flags (list "--with-python=no" - "--disable-static"))) + (list #:configure-flags + #~(list #$@(cond ((target-aarch64?) + '("--with-aarch64")) + ((target-arm32?) + '("--with-arm")) + (else + '())) + "--with-python=no" + "--disable-static"))) (inputs (list openldap gnutls cyrus-sasl)) (synopsis "User-space component to the Linux auditing system") |
