diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-06-14 15:00:54 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-06-14 15:32:32 -0400 |
commit | 1eac587fa631424707c3cf2aa31031e7c88c5557 (patch) | |
tree | 30208521d808dc762ec9062da86e747b42fe2a2e /gnu | |
parent | 0e5539148244077215a984af9347a739c65e7ccb (diff) |
gnu: lexilla: Fix find-files regexp in install phase.
* gnu/packages/text-editors.scm (scintilla) [arguments]: Fix find-files regexp
in install phase.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/text-editors.scm | 2 |
1 files changed, 1 insertions, 1 deletions
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/") |