diff options
author | max <max@FreeBSD.org> | 1996-10-27 08:20:27 +0800 |
---|---|---|
committer | max <max@FreeBSD.org> | 1996-10-27 08:20:27 +0800 |
commit | f2f95068c597e18b32b6289fc449e4466cc5e317 (patch) | |
tree | d8a261822cf3079a013932c114aa853a6ca3a1ac /japanese/platex-common | |
parent | 052ffea92ad6a64d9399ca0fd57f15083863127e (diff) | |
download | freebsd-ports-gnome-f2f95068c597e18b32b6289fc449e4466cc5e317.tar.gz freebsd-ports-gnome-f2f95068c597e18b32b6289fc449e4466cc5e317.tar.zst freebsd-ports-gnome-f2f95068c597e18b32b6289fc449e4466cc5e317.zip |
Use ${MKDIR} macro to make directory.
Diffstat (limited to 'japanese/platex-common')
-rw-r--r-- | japanese/platex-common/Makefile | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/japanese/platex-common/Makefile b/japanese/platex-common/Makefile index d56c01da547a..893a056d22d3 100644 --- a/japanese/platex-common/Makefile +++ b/japanese/platex-common/Makefile @@ -3,7 +3,7 @@ # Date created: 5 Nov 1995 # Whom: Hideaki Ohmon <ohmon@sfc.keio.ac.jp> # -# $Id: Makefile,v 1.7 1996/09/21 07:50:17 max Exp $ +# $Id: Makefile,v 1.8 1996/09/26 04:46:07 max Exp $ # DISTNAME= platex2e @@ -72,12 +72,7 @@ do-build: do-install: @rm -rf ${PREFIX}/lib/texmf/tex/latex2e/base/* - @(if [ ! -d ${PREFIX}/lib/texmf/tex/latex2e ]; then \ - mkdir ${PREFIX}/lib/texmf/tex/latex2e ; \ - fi) - @(if [ ! -d ${PREFIX}/lib/texmf/tex/latex2e/base ]; then \ - mkdir ${PREFIX}/lib/texmf/tex/latex2e/base; \ - fi) + @${MKDIR} -p ${PREFIX}/lib/texmf/tex/latex2e/base (cd ${WRKDIR}/base ; \ for f in *.cls *.clo *.sty *.fd *.def *.ltx ; do \ ${INSTALL_DATA} $$f ${PREFIX}/lib/texmf/tex/latex2e/base ; \ @@ -85,12 +80,7 @@ do-install: ${INSTALL_DATA} latex.fmt ${PREFIX}/lib/texmf/ini) @rm -f ${PREFIX}/bin/latex @ln -s ${PREFIX}/bin/virtex ${PREFIX}/bin/latex - @(if [ ! -d ${PREFIX}/lib/texmf/tex/platex2e ] ; then \ - mkdir ${PREFIX}/lib/texmf/tex/platex2e ; \ - fi) - @(if [ ! -d ${PREFIX}/lib/texmf/tex/platex2e/base ]; then \ - mkdir ${PREFIX}/lib/texmf/tex/platex2e/base ; \ - fi) + @${MKDIR} -p ${PREFIX}/lib/texmf/tex/platex2e/base (cd ${WRKSRC} ; \ for f in *.cls *.clo *.sty *.fd *.def *.ltx *.cfg ; do \ ${INSTALL_DATA} $$f ${PREFIX}/lib/texmf/tex/platex2e/base ; \ |