diff options
author | rillig <rillig@pkgsrc.org> | 2018-01-14 14:58:38 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2018-01-14 14:58:38 +0000 |
commit | 171814c55ce3e50eadd450135290e53b33af64f3 (patch) | |
tree | fa8a27d9c86feb6d31d67b95540e4b35b06cdafe /graphics/vtk-docs | |
parent | 86a59b3186136dd9479eb8547b41ae2469c87314 (diff) | |
download | pkgsrc-171814c55ce3e50eadd450135290e53b33af64f3.tar.gz |
graphics/*: remove redundant :Q modifiers
pkgsrc doesn't support PREFIX with spaces or other special characters.
Therefore it is not necessary to add the :Q modifier to this variable
and several others.
Diffstat (limited to 'graphics/vtk-docs')
-rw-r--r-- | graphics/vtk-docs/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/vtk-docs/Makefile b/graphics/vtk-docs/Makefile index 0fe92235be4..db73657d2dc 100644 --- a/graphics/vtk-docs/Makefile +++ b/graphics/vtk-docs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.7 2012/10/06 14:11:24 asau Exp $ +# $NetBSD: Makefile,v 1.8 2018/01/14 14:58:40 rillig Exp $ # DISTNAME= VTKDocHtml-4.2 @@ -11,10 +11,10 @@ NO_BUILD= yes HTML_DIR= share/doc/${PKGNAME} do-install: - ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX:Q}/${HTML_DIR:Q} - ${FIND} ${WRKSRC:Q} -type f -print | \ + ${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/${HTML_DIR} + ${FIND} ${WRKSRC} -type f -print | \ while read f; do \ - ${INSTALL_DATA} $$f ${DESTDIR}${PREFIX:Q}/${HTML_DIR:Q}; \ + ${INSTALL_DATA} $$f ${DESTDIR}${PREFIX}/${HTML_DIR}; \ done .include "../../graphics/vtk/Makefile.common" |