aboutsummaryrefslogtreecommitdiff
path: root/unix
diff options
context:
space:
mode:
authorMat Kovach <matkovach@gmail.com>2018-11-15 22:00:50 -0500
committerRuss Cox <rsc@golang.org>2018-11-15 22:00:49 -0500
commit4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f (patch)
tree93060a8735085a68af831a2222f9a23e23d39139 /unix
parent43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8 (diff)
downloadplan9port-4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f.tar.gz
plan9port-4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f.tar.bz2
plan9port-4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f.zip
unix: fix tar use in mkfile to allow Plan 9 tar
Diffstat (limited to 'unix')
-rw-r--r--unix/mkfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/mkfile b/unix/mkfile
index 245ea2ed..ab1e6628 100644
--- a/unix/mkfile
+++ b/unix/mkfile
@@ -38,15 +38,15 @@ test-%:V:
lib%.tgz:V:
mk new-$stem
- tar cf - lib$stem | gzip > $target
+ tar c lib$stem | gzip > $target
libregexp9.tgz:V:
mk new-regexp
- tar cf - libregexp | gzip >$target
+ tar c libregexp | gzip >$target
mk.tgz:V:
mk new-mk
- tar cf - mk | gzip > $target
+ tar c mk | gzip > $target
mk-with-libs.tgz:V:
mk new-utf
@@ -59,7 +59,7 @@ mk-with-libs.tgz:V:
mv libutf libfmt libbio libregexp mk zot
mv zot mk
cp make/Makefile.all mk/Makefile
- tar cf - mk | gzip > $target
+ tar c mk | gzip > $target
rm -r mk
tgz:V: libutf.tgz libfmt.tgz libregexp9.tgz libbio.tgz mk.tgz mk-with-libs.tgz