From e34b5416a3b19e63ea88b922c3f2c0c546b8e0e9 Mon Sep 17 00:00:00 2001 From: Thomas Fitzsimmons Date: Mon, 23 Nov 2015 23:21:15 -0500 Subject: [PATCH] Dereference symlinks when creating tarballs * GNUmakefile (process-archive): Dereference symlinks when creating tarballs. --- GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GNUmakefile b/GNUmakefile index ad29cc696..010d16585 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -63,7 +63,7 @@ process-archive: fi; \ if [ -d $$pt ]; then \ echo "Creating tarball $${pt}.tar" && \ - tar -cf $${pt}.tar $$pt --exclude-vcs -X "$$ignore"; \ + tar -chf $${pt}.tar $$pt --exclude-vcs -X "$$ignore"; \ rm -rf $${pt}; \ fi; \ done -- 2.39.2