plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f
parent 43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8
Author: Mat Kovach <matkovach@gmail.com>
Date:   Thu, 15 Nov 2018 22:00:50 -0500

unix: fix tar use in mkfile to allow Plan 9 tar


Diffstat:
Munix/mkfile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git 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