plan9port

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

commit ca6838a1eda52df307b720e55be547aacca94ece
parent 925b7c22c1faf3569972dcd2cfcbaa22f55125db
Author: Russ Cox <rsc@swtch.com>
Date:   Wed,  9 Jul 2008 14:34:46 -0400

unix libfmt: use mkdir -p to create man3 directory

Diffstat:
Munix/make/Makefile.fmt | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/unix/make/Makefile.fmt b/unix/make/Makefile.fmt @@ -51,7 +51,7 @@ HFILES=\ all: $(LIB) install: $(LIB) - test -d $(PREFIX)/man/man3 || mkdir $(PREFIX)/man/man3 + test -d $(PREFIX)/man/man3 || mkdir -p $(PREFIX)/man/man3 install -m 0644 print.3 $(PREFIX)/man/man3/print.3 install -m 0644 fmtinstall.3 $(PREFIX)/man/man3/fmtinstall.3 mkdir -p $(PREFIX)/include