Closed
Bug 5892
Opened 26 years ago
Closed 26 years ago
debugging problems in run-mozilla.sh
Categories
(SeaMonkey :: Build Config, defect, P3)
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: mstewart, Assigned: briano)
Details
While trying to debug mozilla I came across a
few problems with run-mozilla.sh (downloaded from CVS on 2 May 99)
Allow finding debuggers other than ddd
Change Line 148 to:
dpath=`which $d`
Allow -d gdb to bring up debugger
Add after Line 286:
moz_debug=1
Prevent finding incorrect debugger (or none when one exists)
Change Line 150 to:
if [ -x "$dpath" ]
This last change may apply elsewhere in the file also.
For some reason, without the quotes if $dpath is empty, then
the expression is considered true. I don't know if this is a bug
with shell or not, but using quotes seems to fix it.
The second listed fix has apparently changed lines within the file due to other
changes, it belongs in the -d section of the case statement which parses command
line arguments. The other two changes are in 'moz_get_debugger()'
Assignee | ||
Updated•26 years ago
|
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 2•26 years ago
|
||
Fixed.
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•