diff options
author | rillig <rillig> | 2008-01-26 09:23:31 +0000 |
---|---|---|
committer | rillig <rillig> | 2008-01-26 09:23:31 +0000 |
commit | f210e9fda31ac28be337028a9806eaea8823cd6c (patch) | |
tree | 87158be040993a1a480a51ca312d9e09dd1b233d /pkgtools | |
parent | 7093e60336b101309b4f4c200d9cac894f050f73 (diff) | |
download | pkgsrc-f210e9fda31ac28be337028a9806eaea8823cd6c.tar.gz |
When updating a package, the "(perhaps the packing list is incorrectly
specified?)" warning isn't correct, so don't print this assumption at
all.
Diffstat (limited to 'pkgtools')
-rw-r--r-- | pkgtools/pkg_install/files/delete/perform.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgtools/pkg_install/files/delete/perform.c b/pkgtools/pkg_install/files/delete/perform.c index b4c119c7241..3eb9f1a882a 100644 --- a/pkgtools/pkg_install/files/delete/perform.c +++ b/pkgtools/pkg_install/files/delete/perform.c @@ -1,4 +1,4 @@ -/* $NetBSD: perform.c,v 1.20 2007/11/29 22:50:05 rillig Exp $ */ +/* $NetBSD: perform.c,v 1.21 2008/01/26 09:23:31 rillig Exp $ */ #if HAVE_CONFIG_H #include "config.h" @@ -11,7 +11,7 @@ #if 0 static const char *rcsid = "from FreeBSD Id: perform.c,v 1.15 1997/10/13 15:03:52 jkh Exp"; #else -__RCSID("$NetBSD: perform.c,v 1.20 2007/11/29 22:50:05 rillig Exp $"); +__RCSID("$NetBSD: perform.c,v 1.21 2008/01/26 09:23:31 rillig Exp $"); #endif #endif @@ -783,9 +783,7 @@ pkg_do(char *pkg) if (!Fake) { /* Some packages aren't packed right, so we need to just ignore delete_package()'s status. Ugh! :-( */ if (delete_package(FALSE, CleanDirs, &Plist, NoDeleteFiles) == FAIL) - warnx( - "couldn't entirely delete package `%s'\n" - "(perhaps the packing list is incorrectly specified?)", pkg); + warnx("couldn't entirely delete package `%s'\n", pkg); } else { /* Fake means Verbose */ printf("Attempting to delete package `%s'\n", pkg); |