diff options
author | jlam <jlam> | 2006-01-21 14:37:35 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-01-21 14:37:35 +0000 |
commit | 00217493f0b6df037be587e85244227c06a66848 (patch) | |
tree | 194694b94751554621b073a03ef664b6b531d5b6 /fonts/adobe-cmaps | |
parent | 395dc31d4546580077f6fac847c526a96c7669e5 (diff) | |
download | pkgsrc-00217493f0b6df037be587e85244227c06a66848.tar.gz |
We can just use the bare name "unzip" instead of using a make variable --
at this point, the tools directory has already been created and is at the
front of our PATH.
Diffstat (limited to 'fonts/adobe-cmaps')
-rw-r--r-- | fonts/adobe-cmaps/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fonts/adobe-cmaps/Makefile b/fonts/adobe-cmaps/Makefile index c5ce5c6fa44..e92aa504ac6 100644 --- a/fonts/adobe-cmaps/Makefile +++ b/fonts/adobe-cmaps/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2005/11/14 06:05:20 minskim Exp $ +# $NetBSD: Makefile,v 1.15 2006/01/21 14:37:35 jlam Exp $ DISTNAME= adobe-cmaps-20051109 CATEGORIES= fonts print @@ -40,7 +40,7 @@ do-install: for file in ${PDFCORE}; do \ ${MKDIR} ${RESOURCEDIR}/pdfcorefonts/$${file}; \ cd ${RESOURCEDIR}/pdfcorefonts/$${file}; \ - ${UNZIP} -aaoq ${_DISTDIR}/$${file}.zip; \ + unzip -aaoq ${_DISTDIR}/$${file}.zip; \ done ${INSTALL_DATA_DIR} ${RESOURCEDIR}/CMap cd ${RESOURCEDIR}; for dir in ${CMAP_FILES}; do \ |