tunix: fix tar use in mkfile to allow Plan 9 tar - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 4e2ac7657b2ac3173bd4b23ecb7a7e8c4b74c00f
 (DIR) parent 43b0d532bd3c1e4fbd4385c6470db12dbf7a5ad8
 (HTM) 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:
         M unix/mkfile                         |       8 ++++----
       
       1 file changed, 4 insertions(+), 4 deletions(-)
       ---
 (DIR) diff --git a/unix/mkfile b/unix/mkfile
       t@@ -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 
       t@@ -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