diff options
author | Russ Cox <rsc@swtch.com> | 2008-07-09 14:34:46 -0400 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2008-07-09 14:34:46 -0400 |
commit | ca6838a1eda52df307b720e55be547aacca94ece (patch) | |
tree | 6d51592b2b513e63eb7dbd495c0855d6f7f36284 /unix/make | |
parent | 925b7c22c1faf3569972dcd2cfcbaa22f55125db (diff) | |
download | plan9port-ca6838a1eda52df307b720e55be547aacca94ece.tar.gz plan9port-ca6838a1eda52df307b720e55be547aacca94ece.tar.bz2 plan9port-ca6838a1eda52df307b720e55be547aacca94ece.zip |
unix libfmt: use mkdir -p to create man3 directory
Diffstat (limited to 'unix/make')
-rw-r--r-- | unix/make/Makefile.fmt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/make/Makefile.fmt b/unix/make/Makefile.fmt index 51fbf501..3a078401 100644 --- 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 |