pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install Redo previous; follow the new idi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/882798aa9b58
branches:  trunk
changeset: 488982:882798aa9b58
user:      uebayasi <uebayasi%pkgsrc.org@localhost>
date:      Mon Feb 14 02:30:39 2005 +0000

description:
Redo previous; follow the new idiom of quoting variables ("\"${XYZ}"\")
which may be passed to command line, and may contain white spaces.

diffstat:

 pkgtools/pkg_install/Makefile |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (24 lines):

diff -r 2df3eeac21c0 -r 882798aa9b58 pkgtools/pkg_install/Makefile
--- a/pkgtools/pkg_install/Makefile     Sun Feb 13 23:30:07 2005 +0000
+++ b/pkgtools/pkg_install/Makefile     Mon Feb 14 02:30:39 2005 +0000
@@ -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 @@
 
 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



Home | Main Index | Thread Index | Old Index