tstupid bugs - 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 646799d4a7df74283cf7f0cc1b03f46e3a16555f
(DIR) parent 1fdb4a54500c8bda4cbe262280509f8f98b3bfed
(HTM) Author: rsc <devnull@localhost>
Date: Sun, 23 Jan 2005 22:58:02 +0000
stupid bugs
Diffstat:
M unix/make/Makefile.mk | 2 +-
M unix/mkfile | 8 ++++----
2 files changed, 5 insertions(+), 5 deletions(-)
---
(DIR) diff --git a/unix/make/Makefile.mk b/unix/make/Makefile.mk
t@@ -38,7 +38,7 @@ all: $(TARG)
TGZFILES+=mk.pdf
-install: $(LIB)
+install: $(TARG)
mkdir -p $(PREFIX)/bin
install -m 0755 mk $(PREFIX)/bin/mk
cat mk.1 | sed 's;DOCPREFIX;$(PREFIX);g' >mk.1a
(DIR) diff --git a/unix/mkfile b/unix/mkfile
t@@ -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
t@@ -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