summaryrefslogtreecommitdiff
path: root/japanese/mnews
diff options
context:
space:
mode:
authorMasafumi Max NAKANE <max@FreeBSD.org>1996-10-27 00:20:27 +0000
committerMasafumi Max NAKANE <max@FreeBSD.org>1996-10-27 00:20:27 +0000
commit0ed2a127340b579be8693ad068cafcb532f2406a (patch)
tree486b8a3d05bb4d8a33208a8e9481247587834aee /japanese/mnews
parentActivated cless. (diff)
Use ${MKDIR} macro to make directory.
Notes
Notes: svn path=/head/; revision=4167
Diffstat (limited to 'japanese/mnews')
-rw-r--r--japanese/mnews/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/japanese/mnews/Makefile b/japanese/mnews/Makefile
index 4d9436af8d09..8f194df4b3ba 100644
--- a/japanese/mnews/Makefile
+++ b/japanese/mnews/Makefile
@@ -3,7 +3,7 @@
# Date created: 23 Sep 1996
# Whom: Masafumi NAKANE <max@FreeBSD.ORG>
#
-# $Id: Makefile,v 1.1.1.1 1996/09/24 17:03:35 max Exp $
+# $Id: Makefile,v 1.2 1996/10/19 05:16:53 max Exp $
#
DISTNAME= mnews119
@@ -31,15 +31,15 @@ do-configure:
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/mnews ${PREFIX}/bin
if [ ! -d ${PREFIX}/lib/mnews ] ; \
- then /bin/mkdir -p ${PREFIX}/lib/mnews ; fi
+ then ${MKDIR} -p ${PREFIX}/lib/mnews ; fi
${INSTALL_DATA} ${WRKSRC}/jnames.fj ${PREFIX}/lib/mnews/jnames
if [ ! -d ${PREFIX}/share/doc/mnews ] ; \
- then /bin/mkdir -p ${PREFIX}/share/doc/mnews; fi
+ then ${MKDIR} -p ${PREFIX}/share/doc/mnews; fi
.for f in ${DOCS}
${INSTALL_DATA} ${WRKSRC}/$f ${PREFIX}/share/doc/mnews
.endfor
if [ ! -d ${PREFIX}/share/examples/mnews ] ; \
- then /bin/mkdir -p ${PREFIX}/share/examples/mnews; fi
+ then ${MKDIR} -p ${PREFIX}/share/examples/mnews; fi
.for f in ${SAMPLES}
${INSTALL_DATA} ${WRKSRC}/$f ${PREFIX}/share/examples/mnews
.endfor