diff options
author | Hiroki Sato <hrs@FreeBSD.org> | 2005-08-01 08:05:35 +0000 |
---|---|---|
committer | Hiroki Sato <hrs@FreeBSD.org> | 2005-08-01 08:05:35 +0000 |
commit | e54b98fb163a4e0dd0df6440276202fc5baca97f (patch) | |
tree | 91efe495573d7c9dca0e5119776a15b4e741408b /japanese/platex-otf | |
parent | e379a588256d4c8fe0740c62f6d29f56dbe996d7 (diff) |
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)
Notes
Notes:
svn path=/head/; revision=140616
Diffstat (limited to 'japanese/platex-otf')
-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) |