aboutsummaryrefslogtreecommitdiff
path: root/unix/mkfile
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2005-01-23 22:58:02 +0000
committerrsc <devnull@localhost>2005-01-23 22:58:02 +0000
commit646799d4a7df74283cf7f0cc1b03f46e3a16555f (patch)
treecad201f70c214aefc46c02f8def25cb99da2c637 /unix/mkfile
parent1fdb4a54500c8bda4cbe262280509f8f98b3bfed (diff)
downloadplan9port-646799d4a7df74283cf7f0cc1b03f46e3a16555f.tar.gz
plan9port-646799d4a7df74283cf7f0cc1b03f46e3a16555f.tar.bz2
plan9port-646799d4a7df74283cf7f0cc1b03f46e3a16555f.zip
stupid bugs
Diffstat (limited to 'unix/mkfile')
-rw-r--r--unix/mkfile8
1 files changed, 4 insertions, 4 deletions
diff --git a/unix/mkfile b/unix/mkfile
index ee8563ca..81654b53 100644
--- a/unix/mkfile
+++ b/unix/mkfile
@@ -38,15 +38,15 @@ test-%:V:
lib%.tgz:V:
mk new-$stem
- tar cf $target lib$stem
+ tar cf - lib$stem | gzip > $target
libregexp9.tgz:V:
mk new-regexp
- tar cf $target libregexp
+ tar cf - libregexp | gzip >$target
mk.tgz:V:
mk new-mk
- tar cf $target mk
+ tar cf - 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 Makefile mk/Makefile
- tar cf $target mk
+ tar cf - mk | gzip > $target
rm -r mk
tgz:V: libutf.tgz libfmt.tgz libregexp9.tgz libbio.tgz mk.tgz mk-with-libs.tgz