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)
Tracking
(Not tracked)
RESOLVED
FIXED
M7
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
}
Updated•25 years ago
|
Assignee: chofmann → briano
Comment 1•25 years ago
|
||
brian?
Assignee | ||
Updated•25 years ago
|
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•25 years ago
|
||
I already fixed this (May 15).
Updated•8 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•