diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-11-28 21:14:37 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:46 +0200 |
commit | b237c8717ed34008594e7bef60142e14693c3fab (patch) | |
tree | 08a0d0f8954c47292136fafb6017326d29c5adce /gnu/packages/commencement.scm | |
parent | 968c6da422997d795c8601cbbd89b3b308553e8c (diff) | |
download | guix-b237c8717ed34008594e7bef60142e14693c3fab.tar.gz guix-b237c8717ed34008594e7bef60142e14693c3fab.zip |
gnu: grep-mesboot: Remove inherited configure-flags.
* gnu/packages/commencement.scm (grep-mesboot)[arguments]: Strip
inherited configure-flags.
Change-Id: Id1e9c0d742aaa978b436073088f92a742ec45272
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index a50d471b32..0357da0a79 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -1926,6 +1926,11 @@ exec " gcc "/bin/" program (let ((pkg (mesboot-package "grep-mesboot" grep))) (package (inherit pkg) + (arguments + (substitute-keyword-arguments + (strip-keyword-arguments + '(#:configure-flags) + (package-arguments pkg)))) (native-inputs `(("sed" ,sed-mesboot) ,@(package-native-inputs pkg)))))) |