The following reply was made to PR bin/160516; it has been noted by GNATS. From: [email protected] (dfilter service) To: [email protected] Cc: Subject: Re: bin/160516: commit references a PR Date: Fri, 16 Sep 2011 09:10:14 +0000 (UTC)
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-all To unsubscribe, send any mail to "[email protected]" _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
