diff options
author | hrs <hrs@FreeBSD.org> | 2005-08-01 16:05:35 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2005-08-01 16:05:35 +0800 |
commit | fc3465f0de65e6a0091dea1c9128f5f07ef86987 (patch) | |
tree | 8c764813813a90347a25e3433e2a8d3394ab9b90 /japanese | |
parent | 2f9b40b88904594e25904a743db319179abedbb5 (diff) | |
download | freebsd-ports-gnome-fc3465f0de65e6a0091dea1c9128f5f07ef86987.tar.gz freebsd-ports-gnome-fc3465f0de65e6a0091dea1c9128f5f07ef86987.tar.zst freebsd-ports-gnome-fc3465f0de65e6a0091dea1c9128f5f07ef86987.zip |
Improve reliability of the do-install target. In the previous version
the install commands can be very long and prevent it from working.
Pointed out by: Mamoru Iwaki (iwaki at bc dot niigata-u dot ac dot jp)
Diffstat (limited to 'japanese')
-rw-r--r-- | japanese/platex-otf/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/japanese/platex-otf/Makefile b/japanese/platex-otf/Makefile index 85ff62a65dad..1a304c15d182 100644 --- a/japanese/platex-otf/Makefile +++ b/japanese/platex-otf/Makefile @@ -559,7 +559,9 @@ pre-install: do-install: .for D in CLASS OFM TFM VF DVIPDFM DVIPS ${MKDIR} ${PREFIX}/${${D}DIR_DST} - ${INSTALL_DATA} ${${D}FILES:S,^,${${D}DIR_SRC}/,} ${PREFIX}/${${D}DIR_DST} +.for F in ${${D}FILES} + ${INSTALL_DATA} ${${D}DIR_SRC}/${F} ${PREFIX}/${${D}DIR_DST} +.endfor .endfor ${INSTALL_DATA} ${FILESDIR}/cid-otf-noembed.map ${PREFIX}/${DVIPDFMDIR_DST} .if !defined(NOPORTDOCS) |