Date: Sun, 23 Aug 1998 17:49:54 -0700 (PDT) From: asami@FreeBSD.ORG (Satoshi Asami) To: steve@FreeBSD.ORG Cc: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG Subject: Re: cvs commit: ports/japanese/japaneseAFM Makefile Message-ID: <199808240049.RAA28756@silvia.hip.berkeley.edu> In-Reply-To: <199808240042.RAA04438@freefall.freebsd.org> (message from Steve Price on Sun, 23 Aug 1998 17:42:25 -0700 (PDT))
next in thread | previous in thread | raw e-mail | index | archive | help
* Remove stray PLIST.mktmp file.
This isn't the right way to solve it.
===
do-install:
@${MKDIR} ${AFMDIR}
@${INSTALL_DATA} ${WRKSRC}/* ${AFMDIR}
@rm -f ${AFMDIR}/PLIST.mktmp
===
We can't keep changing the Makefile when we decide to add another file
from bsd.port.mk. Shouldn't this read
===
do-install: @${MKDIR} ${AFMDIR}
.for font in GothicBBB-Medium Ryumin-Light
.for dir in H V
${INSTALL_DATA} ${WRKSRC}/${font}-${dir} ${AFMDIR}
.endfor
.endfor
===
instead?
I just tested it and it seems to work fine here. If that's ok for
you, I'll commit it.
Satoshi
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199808240049.RAA28756>
