about summary refs log tree commit homepage
path: root/GNUmakefile
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-10-05 14:24:11 -0700
committerEric Wong <normalperson@yhbt.net>2010-10-05 14:24:11 -0700
commitfc58e747835f05a64cf3c4625d6a51baa4bc8369 (patch)
tree683a4e50a8e033669a7dad1147454f0b939271e7 /GNUmakefile
parent0a13fccf2e9c285baf6d7ebfedb004e496dd976d (diff)
downloadclogger-fc58e747835f05a64cf3c4625d6a51baa4bc8369.tar.gz
We've been spoiled by GNU tar.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 090fcc9..d579c11 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -140,8 +140,8 @@ $(pkgtgz): manifest fix-perms
         @test -n "$(distdir)"
         $(RM) -r $(distdir)
         mkdir -p $(distdir)
-        tar c `cat .manifest` | (cd $(distdir) && tar x)
-        cd pkg && tar c $(basename $(@F)) | gzip -9 > $(@F)+
+        tar cf - `cat .manifest` | (cd $(distdir) && tar xf -)
+        cd pkg && tar cf - $(basename $(@F)) | gzip -9 > $(@F)+
         mv $@+ $@
 
 package: $(pkgtgz) $(pkggem)