guix-patches
[Top][All Lists]
Advanced

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

[bug#49813] [PATCH 06/34] gnu: astyle: Fix regex in FIND-FILES invocatio


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

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

* gnu/packages/code.scm (astyle)[arguments]: Fix regex.
---
 gnu/packages/code.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/code.scm b/gnu/packages/code.scm
index 542ac880fb..c71c31d634 100644
--- a/gnu/packages/code.scm
+++ b/gnu/packages/code.scm
@@ -806,12 +806,12 @@ Objective@tie{}C, D, Java, Pawn, and Vala).  Features:
                (for-each (lambda (l)
                            (copy-file
                             l (string-append libdir "/" (basename l))))
-                         (find-files "bin" "lib*"))
+                         (find-files "bin" "^lib"))
                (for-each
                 (lambda (sofile)
                   (make-so-link sofile "(\\.[0-9]){3}$")  ;; link .so
                   (make-so-link sofile "(\\.[0-9]){2}$")) ;; link .so.3
-                (find-files libdir "lib.*\\.so\\..*")))
+                (find-files libdir "^lib.*\\.so\\.")))
              #t)))))
     (home-page "http://astyle.sourceforge.net/";)
     (synopsis "Source code indenter, formatter, and beautifier")
-- 
2.31.1






reply via email to

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