>From 098f6c9ad4e9b2613f4a6c1046b45a18c9758406 Mon Sep 17 00:00:00 2001 From: Jackson Ray Hamilton Date: Thu, 29 Dec 2016 00:28:25 -0800 Subject: [PATCH] Put tar'd files at the end to fix build in some environments. --- GNUmakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 8edb2f8..e9dd3db 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -153,8 +153,8 @@ included_els := $(shell \ prev=$$(pwd); \ cd $$pt; \ if [ -f .elpaignore ]; then \ - tar -ch *.el --no-recursion \ - --exclude-vcs -X .elpaignore \ + tar -ch --no-recursion \ + --exclude-vcs -X .elpaignore *.el \ | tar --list; \ else \ ls -1 *.el; \ -- 2.1.4