guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#49813] [PATCH 09/34] gnu: libabigail: Fix regex in FIND-FILES invoc


From: Sarah Morgensen
Subject: [bug#49813] [PATCH 09/34] gnu: libabigail: Fix regex in FIND-FILES invocation.
Date: Sun, 1 Aug 2021 14:18:49 -0700

See <https://issues.guix.gnu.org/37150> for more information.

* gnu/packages/elf.scm (libabigail)[arguments]: Fix regex.
---
 gnu/packages/elf.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index aab912648b..9328e5411d 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -9,6 +9,7 @@
 ;;; Copyright © 2020 Mark Wielaard <mark@klomp.org>
 ;;; Copyright © 2020 Michael Rohleder <mike@rohleder.de>
 ;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
+;;; Copyright © 2021 Sarah Morgensen <iskarian@mgsn.dev>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -164,7 +165,7 @@ object or archive file), @command{eu-strip} (for discarding 
symbols),
                                    file (string-append (assoc-ref outputs 
"out")
                                                        "/share/bash-completion"
                                                        "/completions")))
-                                (find-files "bash-completion" ".*abi.*"))
+                                (find-files "bash-completion" "abi"))
                       #t)))))
     (native-inputs
      `(("pkg-config" ,pkg-config)
-- 
2.31.1






reply via email to

[Prev in Thread] Current Thread [Next in Thread]