lilyp pushed a commit to branch master
in repository guix.

commit 98cec369571a6c5a4849f97605b41c37503f4a07
Author: Liliana Marie Prikler <[email protected]>
AuthorDate: Sat May 22 14:54:27 2021 +0200

    build-system: emacs: Keep -pkg.el files.
    
    Partly fixes <https://bugs.gnu.org/48331> -- package descriptions can now be
    found in the install directory.
    
    * guix/build/emacs-build-system.scm (%default-exclude): Remove "-pkg\\.el$".
---
 guix/build/emacs-build-system.scm | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/guix/build/emacs-build-system.scm 
b/guix/build/emacs-build-system.scm
index e41e9a6..f13162d 100644
--- a/guix/build/emacs-build-system.scm
+++ b/guix/build/emacs-build-system.scm
@@ -53,8 +53,7 @@
 
 ;; These are the default inclusion/exclusion regexps for the install phase.
 (define %default-include '("^[^/]*\\.el$" "^[^/]*\\.info$" "^doc/.*\\.info$"))
-(define %default-exclude '("^\\.dir-locals\\.el$" "-pkg\\.el$"
-                           "^[^/]*tests?\\.el$"))
+(define %default-exclude '("^\\.dir-locals\\.el$" "^[^/]*tests?\\.el$"))
 
 (define gnu:unpack (assoc-ref gnu:%standard-phases 'unpack))
 

Reply via email to