pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/pkgtools/pkg_install/files pkg_install-20080126: Make ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/6978e37fdb9f
branches:  trunk
changeset: 538062:6978e37fdb9f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Sat Jan 26 23:30:24 2008 +0000

description:
pkg_install-20080126: Make pkg_add pass down -I and -m when recursively
adding packages.

diffstat:

 pkgtools/pkg_install/files/add/perform.c |  7 +++++--
 pkgtools/pkg_install/files/lib/version.h |  4 ++--
 2 files changed, 7 insertions(+), 4 deletions(-)

diffs (45 lines):

diff -r 07484e618195 -r 6978e37fdb9f pkgtools/pkg_install/files/add/perform.c
--- a/pkgtools/pkg_install/files/add/perform.c  Sat Jan 26 16:06:42 2008 +0000
+++ b/pkgtools/pkg_install/files/add/perform.c  Sat Jan 26 23:30:24 2008 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: perform.c,v 1.68 2007/11/30 00:30:39 rillig Exp $      */
+/*     $NetBSD: perform.c,v 1.69 2008/01/26 23:30:24 joerg Exp $       */
 
 #if HAVE_CONFIG_H
 #include "config.h"
@@ -14,7 +14,7 @@
 #if 0
 static const char *rcsid = "from FreeBSD Id: perform.c,v 1.44 1997/10/13 15:03:46 jkh Exp";
 #else
-__RCSID("$NetBSD: perform.c,v 1.68 2007/11/30 00:30:39 rillig Exp $");
+__RCSID("$NetBSD: perform.c,v 1.69 2008/01/26 23:30:24 joerg Exp $");
 #endif
 #endif
 
@@ -191,6 +191,9 @@
                            Force ? "-f" : "",
                            Prefix ? "-p" : "", Prefix ? Prefix : "",
                            Verbose ? "-v" : "",
+                           OverrideMachine ? "-m" : "",
+                           OverrideMachine ? OverrideMachine : "",
+                           NoInstall ? "-I" : "",
                            "-A", name, NULL)) {
                warnx("autoload of dependency `%s' failed%s",
                        name, Force ? " (proceeding anyway)" : "!");
diff -r 07484e618195 -r 6978e37fdb9f pkgtools/pkg_install/files/lib/version.h
--- a/pkgtools/pkg_install/files/lib/version.h  Sat Jan 26 16:06:42 2008 +0000
+++ b/pkgtools/pkg_install/files/lib/version.h  Sat Jan 26 23:30:24 2008 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: version.h,v 1.87 2007/12/23 23:58:27 joerg Exp $       */
+/*     $NetBSD: version.h,v 1.88 2008/01/26 23:30:24 joerg Exp $       */
 
 /*
  * Copyright (c) 2001 Thomas Klausner.  All rights reserved.
@@ -33,6 +33,6 @@
 #ifndef _INST_LIB_VERSION_H_
 #define _INST_LIB_VERSION_H_
 
-#define PKGTOOLS_VERSION "20071224"
+#define PKGTOOLS_VERSION "20080126"
 
 #endif /* _INST_LIB_VERSION_H_ */



Home | Main Index | Thread Index | Old Index