diff options
author | uebayasi <uebayasi@pkgsrc.org> | 2005-02-14 02:30:39 +0000 |
---|---|---|
committer | uebayasi <uebayasi@pkgsrc.org> | 2005-02-14 02:30:39 +0000 |
commit | b24eb99218848a5ee6e2d5c65148da9cf3708a4f (patch) | |
tree | 675efda2a690bc5b58e8a4ff481a97cb8b7c29f0 /pkgtools | |
parent | 95814bcaec840ff44f3742a26f31e2be1b790882 (diff) | |
download | pkgsrc-b24eb99218848a5ee6e2d5c65148da9cf3708a4f.tar.gz |
Redo previous; follow the new idiom of quoting variables ("\"${XYZ}"\")
which may be passed to command line, and may contain white spaces.
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 0067800012c..b386f91e043 100644 --- a/pkgtools/pkg_install/Makefile +++ b/pkgtools/pkg_install/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.109 2005/02/12 04:45:48 uebayasi Exp $ +# $NetBSD: Makefile,v 1.110 2005/02/14 02:30:39 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:Q} -CONFIGURE_ARGS+= --with-mtree=${MTREE:Q} -CONFIGURE_ARGS+= --with-pax=${PAX:Q} -CONFIGURE_ARGS+= --with-tar=${TAR:Q} +CONFIGURE_ARGS+= --with-ftp="\"${FETCH_CMD}"\" +CONFIGURE_ARGS+= --with-mtree="\"${MTREE}"\" +CONFIGURE_ARGS+= --with-pax="\"${PAX}"\" +CONFIGURE_ARGS+= --with-tar="\"${TAR}"\" NO_PKGTOOLS_REQD_CHECK= # defined NO_BUILDLINK= # defined |