Author: emaste Date: Mon Jun 8 16:11:44 2020 New Revision: 361930 URL: https://svnweb.freebsd.org/changeset/base/361930
Log: crashinfo: stop looking for gdb in /usr/bin/gdb As of r359457 we removed the GDB_LIBEXEC option, always installing in-tree gdb into /usr/libexec/. Thus, there is now no need for crashinfo to include /usr/bin/gdb in the list of pathnames to check when looking for gdb. Modified: head/usr.sbin/crashinfo/crashinfo.sh Modified: head/usr.sbin/crashinfo/crashinfo.sh ============================================================================== --- head/usr.sbin/crashinfo/crashinfo.sh Mon Jun 8 15:27:44 2020 (r361929) +++ head/usr.sbin/crashinfo/crashinfo.sh Mon Jun 8 16:11:44 2020 (r361930) @@ -50,7 +50,7 @@ find_gdb() { local binary - for binary in /usr/local/bin/gdb /usr/libexec/gdb /usr/bin/gdb; do + for binary in /usr/local/bin/gdb /usr/libexec/gdb; do if [ -x ${binary} ]; then GDB=${binary} return _______________________________________________ svn-src-head@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"