Closed
Bug 7597
Opened 27 years ago
Closed 27 years ago
Hardcoded library name in mozilla/intl/strres/tests/Makefile.in
Categories
(Core :: Internationalization, defect, P3)
Tracking
()
VERIFIED
FIXED
M7
People
(Reporter: tenthumbs, Assigned: ftang)
Details
In the above file the name /usr/lib/libdl.so is hardcoded. My libdl.so does not
exist at that location. This should just be "-ldl". Since all the gazillion
shared libs had no trouble finding libdl.so, this may be completely unnecessary.
In any case, here's a patch.
Index: mozilla/intl/strres/tests/Makefile.in
===================================================================
RCS file: /cvsroot/mozilla/intl/strres/tests/Makefile.in,v
retrieving revision 1.7
diff -u -r1.7 Makefile.in
--- Makefile.in 1999/05/28 21:37:38 1.7
+++ Makefile.in 1999/06/04 16:11:47
@@ -61,7 +61,7 @@
# needed for mac linux
ifeq ($(OS_ARCH),Linux)
ifneq ($(OS_RELEASE),1.2)
-OS_LIBS += /usr/lib/libdl.so
+OS_LIBS += -ldl
endif
endif
Updated•27 years ago
|
Status: NEW → RESOLVED
Closed: 27 years ago
Resolution: --- → FIXED
Updated•27 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•