From 58b7799a69d450fc89b096200d7915fa06917101 Mon Sep 17 00:00:00 2001 From: Steve Purcell Date: Mon, 27 Jan 2014 18:04:25 +0000 Subject: [PATCH] Include "doc/dir" in the default :files list See https://github.com/flycheck/flycheck/issues/274 --- package-build.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package-build.el b/package-build.el index 85a994bf..0539c877 100644 --- a/package-build.el +++ b/package-build.el @@ -90,7 +90,7 @@ function for access to this function") (defconst package-build-default-files-spec '("*.el" "*.el.in" "dir" "*.info" "*.texi" "*.texinfo" - "doc/*.info" "doc/*.texi" "doc/*.texinfo" + "doc/dir" "doc/*.info" "doc/*.texi" "doc/*.texinfo" (:exclude "tests.el" "*-test.el" "*-tests.el")) "Default value for :files attribute in recipes.")