branch: elpa-admin
commit db9b5cdd3c4ebea1c89e15029b14e527827cbfb1
Merge: 84f4eb7 3caf5e7
Author: Barry O'reilly <[email protected]>
Commit: Barry O'reilly <[email protected]>
Merge branch 'master' of git.sv.gnu.org:/srv/git/emacs/elpa
---
GNUmakefile | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
index 7d88843..ec3dc25 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -15,10 +15,10 @@ check_copyrights:
@echo "Compute exceptions >$(CR_EXCEPTIONS)~"
@export LANG=C; \
(cd packages; \
- find . -name '*.el' -print0 | \
+ find . -name '.git' -prune -o -name '*.el' -print0 | \
xargs -0 grep -L 'Free Software Foundation, Inc' | \
grep -v '\(\.dir-locals\|.-\(pkg\|autoloads\)\)\.el$$'; \
- find . -name '*.el' -print | \
+ find . -name '.git' -prune -o -name '*.el' -print | \
while read f; do \
fquoted="$$(echo $$f|tr '|' '_')"; \
sed -n -e '/[Cc]opyright.*, *[1-9][-0-9]*,\?$$/N' \