From 4cdf235762d7235bff98b034c427e489f3f6771b Mon Sep 17 00:00:00 2001 From: Donald Curtis Date: Mon, 27 May 2013 09:00:15 -0500 Subject: [PATCH] exclude -test.el and -tests.el in default :files --- package-build.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package-build.el b/package-build.el index 37e1c3b6..18ae6092 100644 --- a/package-build.el +++ b/package-build.el @@ -86,7 +86,8 @@ function for access to this function") (defconst pb/default-files-spec '("*.el" "dir" "*.info" "*.texi" "*.texinfo" - "doc/*.info" "doc/*.texi" "doc/*.texinfo") + "doc/*.info" "doc/*.texi" "doc/*.texinfo" + (:exclude "*-test.el" "*-tests.el")) "Default value for :files attribute in recipes.")