Bug 57867
| Summary: | 0.9.6-0 and 0.9.7-0 fails to compile from source | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Raw Hide | Reporter: | Need Real Name <svante.signell> |
| Component: | mozilla | Assignee: | Christopher Blizzard <blizzard> |
| Status: | CLOSED WORKSFORME | QA Contact: | Ben Levenson <benl> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 1.0 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i686 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2001-12-30 22:41:09 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Need Real Name
2001-12-29 05:58:57 UTC
Tracked this down further, the script mozilla-copy-package-files.sh use an
option _not_ to follow symbolic links. This option is not reversed by using -L
to cp, at least for the cp version in fileutils-4.1.3-1.
COPY expands to 'cp -L' (or maybe 'cp', nevertheless removing -P works)
- $COPY -vrP ${i} ${TARGET_DIR}
+ $COPY -vr ${i} ${TARGET_DIR}
with this change files are installed, not the links themselves.
Of course new problems show up: now
/var/tmp/mozilla-root/usr/lib/mozilla/regxpcom is reporting an unresolved
external(bothe gcc-3.1 and gcc-2.96):
./regxpcom: relocation error: ./regxpcom: undefined symbol: NS_InitXPCOM2
If you do an ldd on regexpcom it is linked to the _previously_ installed version
of mozilla!!
ldd ./regxpcom
libxpcom.so => /usr/lib/libxpcom.so (0x4002d000)
libplds4.so => /usr/lib/libplds4.so (0x40115000)
libplc4.so => /usr/lib/libplc4.so (0x40119000)
libnspr4.so => /usr/lib/libnspr4.so (0x4011e000)
rpm -qf /usr/lib/libxpcom.so
mozilla-0.9.5-2
I thought the libraries should be natively linked. What would happen if
mozilla-0.9.5-2 was not installed? Everything OK then??
Ancient bug report. Works here. |