diff options
author | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-12 02:19:40 +0000 |
---|---|---|
committer | David E. O'Brien <obrien@FreeBSD.org> | 1996-11-12 02:19:40 +0000 |
commit | d23a79568090d280bf3beb199bb97f0572234984 (patch) | |
tree | 8af4f4b16bdda8a7b54ff123a7cfe5fcc38c203c /lang/moscow_ml/Makefile | |
parent | CATAGORIES+= -> CATAGORIES= (diff) |
CATAGORIES+= -> CATAGORIES=
Reordered vars where needed. Added MAINTAINERS where needed, many
mkdir --> ${MKDIR}, install -> ${INSTALL_*}, etc.
Notes
Notes:
svn path=/head/; revision=4416
Diffstat (limited to 'lang/moscow_ml/Makefile')
-rw-r--r-- | lang/moscow_ml/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index 468643fe7210..4b6d5e13ea27 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -3,12 +3,12 @@ # Date created: 26 July 1996 # Whom: chuckr # -# $Id: Makefile,v 1.4 1996/07/30 01:24:55 chuckr Exp $ +# $Id: Makefile,v 1.5 1996/10/11 18:58:01 asami Exp $ # DISTNAME= mos14src PKGNAME= moscow_ml-1.4 -CATEGORIES+= lang +CATEGORIES= lang MASTER_SITES= ftp://ftp.dina.kvl.dk/pub/mosml/ \ ftp://ftp.csd.uu.se/pub/mirror/mosml/ \ ftp://ftp.dcs.ed.ac.uk/pub/ml/Moscow/ @@ -20,14 +20,14 @@ WRKSRC= ${WRKDIR}/mosml/src post-install: .if !defined(NOPORTDOCS) - mkdir -p ${PREFIX}/moscow_ml/doc - mkdir -p ${PREFIX}/moscow_ml/examples + ${MKDIR} ${PREFIX}/moscow_ml/doc + ${MKDIR} ${PREFIX}/moscow_ml/examples for file in ${WRKDIR}/mosml/doc/*;do \ ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc;done (cd ${WRKDIR}/mosml/examples; \ ${INSTALL_DATA} README ${PREFIX}/moscow_ml/examples; \ for sdirs in manual mls helpsigs calc pretty lexyacc;do \ - mkdir -p ${PREFIX}/moscow_ml/examples/$${sdirs}; \ + ${MKDRI} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ for file in $${sdirs}/*;do \ ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ done; done;) |