Source-Changes-HG archive

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

[src/netbsd-1-4]: src/usr.sbin/pkg_install/lib Pull up revision 1.7 (requeste...



details:   https://anonhg.NetBSD.org/src/rev/117af9e05139
branches:  netbsd-1-4
changeset: 470235:117af9e05139
user:      he <he%NetBSD.org@localhost>
date:      Mon Jan 31 20:58:47 2000 +0000

description:
Pull up revision 1.7 (requested by hubertf):
  Implement FTP wildcard depends, to give NetBSD full wildcard support
  not only in pkgsrc but also for binary packages installed from
  local disk or via FTP.

diffstat:

 usr.sbin/pkg_install/lib/exec.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (28 lines):

diff -r 3eceac915af1 -r 117af9e05139 usr.sbin/pkg_install/lib/exec.c
--- a/usr.sbin/pkg_install/lib/exec.c   Mon Jan 31 20:58:30 2000 +0000
+++ b/usr.sbin/pkg_install/lib/exec.c   Mon Jan 31 20:58:47 2000 +0000
@@ -1,11 +1,11 @@
-/*     $NetBSD: exec.c,v 1.5.2.1 1999/09/13 22:17:54 he Exp $  */
+/*     $NetBSD: exec.c,v 1.5.2.2 2000/01/31 20:58:47 he Exp $  */
 
 #include <sys/cdefs.h>
 #ifndef lint
 #if 0
 static const char *rcsid = "from FreeBSD Id: exec.c,v 1.6 1997/10/08 07:47:50 charnier Exp";
 #else
-__RCSID("$NetBSD: exec.c,v 1.5.2.1 1999/09/13 22:17:54 he Exp $");
+__RCSID("$NetBSD: exec.c,v 1.5.2.2 2000/01/31 20:58:47 he Exp $");
 #endif
 #endif
 
@@ -56,8 +56,8 @@
                warnx("vsystem args are too long");
                return 1;
        }
-#ifdef DEBUG
-       printf("Executing %s\n", cmd);
+#ifdef VSYSTEM_DEBUG
+       printf("vsystem(\"%s\")\n", cmd);
 #endif
        ret = system(cmd);
        va_end(args);



Home | Main Index | Thread Index | Old Index