diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2005-02-12 04:45:48 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2005-02-12 04:45:48 +0000 |
commit | 055277791814d5d1776e6ac16106d1a3715a6395 (patch) | |
tree | bb9ae8fdf5ce455ea594f9af8456310245e5688e /pkgtools/pkg_install/Makefile | |
parent | 67bd75ff124bfd62fecc7aa0a9f3bde459ea54ce (diff) | |
download | pkgsrc-055277791814d5d1776e6ac16106d1a3715a6395.tar.gz |
Quote command strings to be passed to configure script.
Diffstat (limited to 'pkgtools/pkg_install/Makefile')
-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 |