Closed
Bug 151541
Opened 22 years ago
Closed 22 years ago
Mozilla startup script fails on Solaris 8/x86
Categories
(SeaMonkey :: Build Config, defect)
Tracking
(Not tracked)
People
(Reporter: bugzilla, Assigned: netscape)
Details
The startup script /usr/local/bin/mozilla fails on the line:
until /usr/bin/test $found != 0 -o ! -L "$progname" ; do
because the Bourne shell built-in test does not handle -L. To quote the Solaris
man page for test(1):
The -L option is a migration aid for users of other shells
which have similar options and may not be supported in
future releases.
Workaround: use /usr/bin/test instead of just test.
Updated•22 years ago
|
QA Contact: bugzilla → ktrina
Comment 1•22 years ago
|
||
-> cls (that doesn't seem to be a dupe of the symlink bug)
Assignee: dveditz → seawood
Component: Installer → Build Config
QA Contact: ktrina → granrose
Assignee | ||
Comment 2•22 years ago
|
||
Hrm, I thought that I had already responded to this but bugzilla doesn't seem to
see it...
Yes, this is a dupe of the symlink bug as the -L test is used during symlink
detection. It's a known problem that solaris' /bin/sh is broken and doesn't
implement -L properly even though -h works. A checkin was made yesterday to
switch to using -h.
*** This bug has been marked as a duplicate of 57866 ***
Status: UNCONFIRMED → RESOLVED
Closed: 22 years ago
Resolution: --- → DUPLICATE
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•