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);
_______________________________________________
[email protected] mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "[email protected]"

Reply via email to