diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1996-10-11 18:58:01 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1996-10-11 18:58:01 +0000 |
commit | 6821941f98a44a36519fb4fa7b63c1a39c89167c (patch) | |
tree | 99f3c61cf747ec939cdcf3aa71e89bb6f7e6fa22 /lang/moscow_ml | |
parent | Add netscape3.01.language (diff) |
Remove spurious ";"s.
While I'm here, rewrite the install commands to use the macros.
Reviewed by (sort of): chuckr
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 bcb8a6652a57..468643fe7210 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.3 1996/07/29 22:33:14 asami Exp $ +# $Id: Makefile,v 1.4 1996/07/30 01:24:55 chuckr Exp $ # DISTNAME= mos14src @@ -22,14 +22,14 @@ post-install: .if !defined(NOPORTDOCS) 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}/moscow_ml/doc;done + for file in ${WRKDIR}/mosml/doc/*;do \ + ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/doc;done (cd ${WRKDIR}/mosml/examples; \ - install -c -m 0444 -g bin -o bin README ${PREFIX}/moscow_ml/examples; \ - for sdirs in manual mls helpsigs calc pretty lexyacc;do; \ + ${INSTALL_DATA} README ${PREFIX}/moscow_ml/examples; \ + for sdirs in manual mls helpsigs calc pretty lexyacc;do \ mkdir -p ${PREFIX}/moscow_ml/examples/$${sdirs}; \ - for file in $${sdirs}/*;do; \ - install -c -m 0444 -g bin -o bin $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ + for file in $${sdirs}/*;do \ + ${INSTALL_DATA} $${file} ${PREFIX}/moscow_ml/examples/$${sdirs}; \ done; done;) .endif |