guix-commits
[Top][All Lists]
Advanced

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

02/03: gnu: lexilla: Fix find-files regexp in install phase.


From: guix-commits
Subject: 02/03: gnu: lexilla: Fix find-files regexp in install phase.
Date: Wed, 14 Jun 2023 15:33:49 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 1eac587fa631424707c3cf2aa31031e7c88c5557
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Jun 14 15:00:54 2023 -0400

    gnu: lexilla: Fix find-files regexp in install phase.
    
    * gnu/packages/text-editors.scm (scintilla) [arguments]: Fix find-files 
regexp
    in install phase.
---
 gnu/packages/text-editors.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index c4c2893009..606d85584b 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -1029,7 +1029,7 @@ The basic features of Text Pieces are:
                 (for-each (lambda (f) (install-file f lib))
                           (find-files "bin/" "\\.so$"))
                 (for-each (lambda (f) (install-file f inc))
-                          (find-files "include/" "."))))))))
+                          (find-files "include/" "\\.h$"))))))))
     (native-inputs (list pkg-config python-wrapper))
     (inputs (list gtk+))
     (home-page "https://www.scintilla.org/";)



reply via email to

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