diff options
author | asami <asami@FreeBSD.org> | 1996-10-12 02:58:01 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-10-12 02:58:01 +0800 |
commit | 82387bd9e5c5889fd0a7ff3b5649756f6bdc056d (patch) | |
tree | c15439dd0db07e45c1bbadd4f7103781ffa7a353 /lang | |
parent | c19e2aa28e230d3c22d328bb048934be3e9d3460 (diff) | |
download | freebsd-ports-gnome-82387bd9e5c5889fd0a7ff3b5649756f6bdc056d.tar.gz freebsd-ports-gnome-82387bd9e5c5889fd0a7ff3b5649756f6bdc056d.tar.zst freebsd-ports-gnome-82387bd9e5c5889fd0a7ff3b5649756f6bdc056d.zip |
Remove spurious ";"s.
While I'm here, rewrite the install commands to use the macros.
Reviewed by (sort of): chuckr
Diffstat (limited to 'lang')
-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 |