diff options
author | jlam <jlam@pkgsrc.org> | 2006-01-21 14:37:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2006-01-21 14:37:35 +0000 |
commit | 6f173d5704157dd513f30b3acc3abd041f03813a (patch) | |
tree | 194694b94751554621b073a03ef664b6b531d5b6 /fonts | |
parent | 5372923674c0f5c8b9c0935596edc72ff92276ab (diff) | |
download | pkgsrc-6f173d5704157dd513f30b3acc3abd041f03813a.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')
-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 \ |