mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
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.
This commit is contained in:
parent
e854dd38ac
commit
33bb3dbe38
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue