diff options
author | uebayasi <uebayasi> | 2005-02-12 04:45:48 +0000 |
---|---|---|
committer | uebayasi <uebayasi> | 2005-02-12 04:45:48 +0000 |
commit | 6f246bce71ba8dd50146836391723aaea69e4871 (patch) | |
tree | bb9ae8fdf5ce455ea594f9af8456310245e5688e /pkgtools | |
parent | 7222ff62cea29fa8dbfbbcd18aeb24e9ef494e22 (diff) | |
download | pkgsrc-6f246bce71ba8dd50146836391723aaea69e4871.tar.gz |
Quote command strings to be passed to configure script.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/Makefile b/pkgtools/pkg_install/Makefile index 5c175eb5c53..0067800012c 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.108 2005/01/22 01:03:45 jklos Exp $ +# $NetBSD: Makefile,v 1.109 2005/02/12 04:45:48 uebayasi Exp $ # Notes to package maintainers: # @@ -19,10 +19,10 @@ COMMENT= Package management and administration tools for pkgsrc GNU_CONFIGURE= # defined CONFIGURE_ARGS+= --with-pkgdbdir=${PKG_DBDIR} -CONFIGURE_ARGS+= --with-ftp=${FETCH_CMD} -CONFIGURE_ARGS+= --with-mtree=${MTREE} -CONFIGURE_ARGS+= --with-pax=${PAX} -CONFIGURE_ARGS+= --with-tar=${TAR} +CONFIGURE_ARGS+= --with-ftp=${FETCH_CMD:Q} +CONFIGURE_ARGS+= --with-mtree=${MTREE:Q} +CONFIGURE_ARGS+= --with-pax=${PAX:Q} +CONFIGURE_ARGS+= --with-tar=${TAR:Q} NO_PKGTOOLS_REQD_CHECK= # defined NO_BUILDLINK= # defined |