diff options
author | billf <billf@FreeBSD.org> | 1998-12-01 23:37:52 +0000 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1998-12-01 23:37:52 +0000 |
commit | 3ba1c3a286a082f6e23e88fffe4f83f6804d3739 (patch) | |
tree | 03236af1fc440536a9ecb5a7d4651bbd9113eaca /x11-clocks | |
parent | 033bdcb776c3e23cac5ff6f4f1e8871e16e0a654 (diff) | |
download | FreeBSD-ports-3ba1c3a286a082f6e23e88fffe4f83f6804d3739.zip FreeBSD-ports-3ba1c3a286a082f6e23e88fffe4f83f6804d3739.tar.gz |
portlint - "mkdir -p" -> ${MKDIR}
Diffstat (limited to 'x11-clocks')
-rw-r--r-- | x11-clocks/emiclock/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/x11-clocks/emiclock/Makefile b/x11-clocks/emiclock/Makefile index 6e9c265..d3cd5de 100644 --- a/x11-clocks/emiclock/Makefile +++ b/x11-clocks/emiclock/Makefile @@ -3,7 +3,7 @@ # Date created: 15 March 1995 # Whom: Nobuhiro Yasutomi # -# $Id: Makefile,v 1.11 1998/09/21 01:39:09 steve Exp $ +# $Id: Makefile,v 1.12 1998/09/22 22:32:07 asami Exp $ # DISTNAME= emiclock-1.0.4 @@ -21,8 +21,8 @@ EMICLOCKDIR= $(X11BASE)/lib/X11/EmiClock COPYRIGHTS= COPYRIGHT COPYRIGHT.en pre-install: - @if [ ! -d $(EMICLOCKDIR) ] ; then mkdir -p $(EMICLOCKDIR); fi - @if [ ! -d $(LANGDIR) ] ; then mkdir -p $(LANGDIR); fi + @if [ ! -d $(EMICLOCKDIR) ] ; then ${MKDIR} $(EMICLOCKDIR); fi + @if [ ! -d $(LANGDIR) ] ; then ${MKDIR} $(LANGDIR); fi cd $(WRKSRC); install -c -m 0444 $(LANGRES) $(LANGDIR)/EmiClock cd $(WRKSRC); install -c -m 0444 $(COPYRIGHTS) $(EMICLOCKDIR) # cd $(WRKSRC); make install.man |