summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHerman Rimm <herman@rimm.ee>2025-03-17 17:58:58 +0100
committerLudovic Courtès <ludo@gnu.org>2026-04-01 22:06:13 +0200
commit1debc5ea30f7ce68cfe787bfc6ad657b1dbba0cc (patch)
treedcdd22c35c3e5055cb0400d7434c7b998e732621 /gnu/packages
parent04a3266a3debe1fb4a483da08101b4ca93a42bf7 (diff)
gnu: vim: Enable cross-compilation.
* gnu/packages/vim.scm (vim)[arguments]: Set STRIP configure flag. Change-Id: I15c5c233053496bc4c75d4d33d6e169381f83822 Signed-off-by: Ludovic Courtès <ludo@gnu.org> Merges: #7267
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/vim.scm4
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/vim.scm b/gnu/packages/vim.scm
index 30247b6912e..41b1250aa3e 100644
--- a/gnu/packages/vim.scm
+++ b/gnu/packages/vim.scm
@@ -16,7 +16,7 @@
16;;; Copyright © 2023 Charles Jackson <charles.b.jackson@protonmail.com> 16;;; Copyright © 2023 Charles Jackson <charles.b.jackson@protonmail.com>
17;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com> 17;;; Copyright © 2023 Foundation Devices, Inc. <hello@foundationdevices.com>
18;;; Copyright © 2023, 2024 Nguyễn Gia Phong <cnx@loang.net> 18;;; Copyright © 2023, 2024 Nguyễn Gia Phong <cnx@loang.net>
19;;; Copyright © 2026 Herman Rimm <herman@rimm.ee> 19;;; Copyright © 2025, 2026 Herman Rimm <herman@rimm.ee>
20;;; 20;;;
21;;; This file is part of GNU Guix. 21;;; This file is part of GNU Guix.
22;;; 22;;;
@@ -108,6 +108,8 @@
108 (list 108 (list
109 #:test-target "test" 109 #:test-target "test"
110 #:parallel-tests? #f 110 #:parallel-tests? #f
111 #:configure-flags
112 #~(list (string-append "STRIP=" #$(strip-for-target)))
111 #:phases 113 #:phases
112 #~(modify-phases %standard-phases 114 #~(modify-phases %standard-phases
113 (add-after 'configure 'patch-absolute-paths 115 (add-after 'configure 'patch-absolute-paths