diff options
author | Chuck Robey <chuckr@FreeBSD.org> | 1996-07-30 01:24:55 +0000 |
---|---|---|
committer | Chuck Robey <chuckr@FreeBSD.org> | 1996-07-30 01:24:55 +0000 |
commit | e75525a249e69428ee286aad1b6cd252f9ce17c0 (patch) | |
tree | 99da7fcdc482c1d85e491fc088dd913a88f7598e /lang/moscow_ml | |
parent | Getting the form more right, on Makefile layout. (diff) |
Changed doc install directory.
Notes
Notes:
svn path=/head/; revision=3453
Diffstat (limited to 'lang/moscow_ml')
-rw-r--r-- | lang/moscow_ml/Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lang/moscow_ml/Makefile b/lang/moscow_ml/Makefile index 44df0f774bca..bcb8a6652a57 100644 --- a/lang/moscow_ml/Makefile +++ b/lang/moscow_ml/Makefile @@ -3,7 +3,7 @@ # Date created: 26 July 1996 # Whom: chuckr # -# $Id: Makefile,v 1.2 1996/07/28 02:54:06 chuckr Exp $ +# $Id: Makefile,v 1.3 1996/07/29 22:33:14 asami Exp $ # DISTNAME= mos14src @@ -20,16 +20,16 @@ WRKSRC= ${WRKDIR}/mosml/src post-install: .if !defined(NOPORTDOCS) - mkdir -p ${PREFIX}/${PKGNAME}/doc - mkdir -p ${PREFIX}/${PKGNAME}/examples + mkdir -p ${PREFIX}/moscow_ml/doc + mkdir -p ${PREFIX}/moscow_ml/examples for file in ${WRKDIR}/mosml/doc/*;do; \ - install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/doc;done + install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/moscow_ml/doc;done (cd ${WRKDIR}/mosml/examples; \ - install -c -m 0444 -g bin -o bin README ${PREFIX}/${PKGNAME}/examples; \ + install -c -m 0444 -g bin -o bin README ${PREFIX}/moscow_ml/examples; \ for sdirs in manual mls helpsigs calc pretty lexyacc;do; \ - mkdir -p ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \ + mkdir -p ${PREFIX}/moscow_ml/examples/$${sdirs}; \ for file in $${sdirs}/*;do; \ - install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/${PKGNAME}/examples/$${sdirs}; \ + install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ done; done;) .endif |