diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1997-10-08 07:51:35 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1997-10-08 07:51:35 +0000 |
commit | aa7f830e6ffd4d0cc7eb027a74847e5fe0af9f9f (patch) | |
tree | be0d7a4b7c9bd4480f6fcb43d90458d58ef882fc /www/mapedit | |
parent | 3b1ac47ca35beae51538d8c63b26ccad3b6de1d4 (diff) |
"${MKDIR} -p" -> "${MKDIR}".
Notes
Notes:
svn path=/head/; revision=8178
Diffstat (limited to 'www/mapedit')
-rw-r--r-- | www/mapedit/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/www/mapedit/Makefile b/www/mapedit/Makefile index 9209e4ddab3a..388a91cb242e 100644 --- a/www/mapedit/Makefile +++ b/www/mapedit/Makefile @@ -3,7 +3,7 @@ # Date created: Fr 4 Apr 1997 17:45:31 MET DST # Whom: Andreas Klemm <andreas@klemm.gtn.com> # -# $Id: Makefile,v 1.6 1997/04/09 03:09:50 asami Exp $ +# $Id: Makefile,v 1.7 1997/10/04 14:53:06 andreas Exp $ # DISTNAME= mapedit2.24 @@ -23,7 +23,7 @@ pre-install: @echo "" do-install: - ${MKDIR} -p ${DOCDIR} + ${MKDIR} ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/README.TXT ${DOCDIR} ${INSTALL_DATA} ${WRKSRC}/help.html ${DOCDIR} ${INSTALL_PROGRAM} ${WRKSRC}/mapedit ${PREFIX}/bin |