Closed Bug 6057 Opened 25 years ago Closed 25 years ago

moz_get_debugger in run-mozilla.sh only looks for ddd

Categories

(Core Graveyard :: Tracking, defect, P3)

x86
Linux
defect

Tracking

(Not tracked)

RESOLVED FIXED

People

(Reporter: wrffr, Assigned: briano)

Details

In the script "run-mozilla.sh", the function "moz_get_debugger()" will only find "ddd" because the "which" statement in the loop is hardcoded rather than using the $d variable. Included is a copy of the function with a note where the problem occurs. moz_get_debugger() { debuggers="ddd gdb dbx" debugger="notfound" done="no" for d in $debuggers do dpath=`which ddd` # ^^^ --this is the error -- should be $d if [ -x $dpath ] then debugger=$dpath break fi done echo $debugger return 0 }
QA Contact: leger → cyeh
Assignee: chofmann → briano
brian?
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
I already fixed this (May 15).
Target Milestone: M7
Product: Core → Core Graveyard
You need to log in before you can comment on or make changes to this bug.