summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2008-01-26 09:23:31 +0000
committerrillig <rillig@pkgsrc.org>2008-01-26 09:23:31 +0000
commit95ce0db1bfd57ab2395ee67fca5c237a4fbb9fc3 (patch)
tree87158be040993a1a480a51ca312d9e09dd1b233d /pkgtools
parentd8d13db647484514e4f21d0d5fcf5c1bb5edd0ba (diff)
downloadpkgsrc-95ce0db1bfd57ab2395ee67fca5c237a4fbb9fc3.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.c8
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);