svn commit: r225610 - head/usr.sbin/pkg_install/delete

Sergey Kandaurov pluknet at FreeBSD.org
Fri Sep 16 09:09:59 UTC 2011


Author: pluknet
Date: Fri Sep 16 09:09:58 2011
New Revision: 225610
URL: http://svn.freebsd.org/changeset/base/225610

Log:
  Print the package name on deletion errors.
  
  It appears this was already done in NetBSD a decade ago, hence
  I just reuse the change (except our code is bad styled).
  
  PR:		bin/160516
  Approved by:	portmgr
  Approved by:	re (kib)
  Obtained from:	NetBSD

Modified:
  head/usr.sbin/pkg_install/delete/perform.c

Modified: head/usr.sbin/pkg_install/delete/perform.c
==============================================================================
--- head/usr.sbin/pkg_install/delete/perform.c	Fri Sep 16 08:24:31 2011	(r225609)
+++ head/usr.sbin/pkg_install/delete/perform.c	Fri Sep 16 09:09:58 2011	(r225610)
@@ -324,8 +324,8 @@ pkg_do(char *pkg)
      */
     if (delete_package(FALSE, CleanDirs, &Plist) == FAIL)
 	warnx(
-	"couldn't entirely delete package (perhaps the packing list is\n"
-	"incorrectly specified?)");
+	"couldn't entirely delete package `%s'\n"
+	"(perhaps the packing list is incorrectly specified?)", pkg);
 
     if (chdir(LogDir) == FAIL) {
  	warnx("unable to change directory to %s! deinstall failed", LogDir);


More information about the svn-src-all mailing list