diff options
author | nathanw <nathanw@pkgsrc.org> | 2000-04-19 19:47:24 +0000 |
---|---|---|
committer | nathanw <nathanw@pkgsrc.org> | 2000-04-19 19:47:24 +0000 |
commit | 9049006c07b68e2b262ecc83fc0e3598823478bd (patch) | |
tree | 04f82305ba9f9d3e9acc47a9bd44aca68e6bc193 /print/LPRng | |
parent | 90d602f0cec3e19078238b4162c7b5bf02ab6aee (diff) | |
download | pkgsrc-9049006c07b68e2b262ecc83fc0e3598823478bd.tar.gz |
Quote wildcard arguments to pax so that the presence of matching files in
the current directory doesn't break the command.
Diffstat (limited to 'print/LPRng')
-rw-r--r-- | print/LPRng/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print/LPRng/Makefile b/print/LPRng/Makefile index ff2a9f56e2b..df7ab26fafb 100644 --- a/print/LPRng/Makefile +++ b/print/LPRng/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 1999/09/13 18:40:51 jlam Exp $ +# $NetBSD: Makefile,v 1.3 2000/04/19 19:47:24 nathanw Exp $ # FreeBSD Id: Makefile,v 1.5 1998/10/21 00:57:27 steve Exp # @@ -68,6 +68,6 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/LPRng ${PAX} -rzf ${DISTDIR}/${LPRNG_DOC} \ -s "#^${DISTNAME:S/-/_DOC-/}/#${PREFIX}/share/doc/LPRng/#" \ - *.gif *.html *.ps *.txt + '*.gif' '*.html' '*.ps' '*.txt' .include "../../mk/bsd.pkg.mk" |