This is the mail archive of the libc-hacker@sourceware.cygnus.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

A patch for elf/Makefile in glibc 2.1.3.


loadfail.c loads testobj?.so. But there are no dependences in
Makefile. Here is a patch.


-- 
H.J. Lu (hjl@gnu.org)
---
2000-03-04  H.J. Lu  <hjl@gnu.org>

	* elf/Makefile ($(objpfx)loadfail.out): Also depend on
	$(objpfx)testobj1.so, $(objpfx)testobj2.so,
	$(objpfx)testobj3.so, $(objpfx)testobj4.so and
	$(objpfx)testobj5.so.

Index: elf/Makefile
===================================================================
RCS file: /work/cvs/gnu/glibc-2.1/elf/Makefile,v
retrieving revision 1.11
diff -u -p -r1.11 Makefile
--- elf/Makefile	1999/08/08 17:03:29	1.11
+++ elf/Makefile	2000/03/04 23:22:42
@@ -246,7 +246,12 @@ preloadtest-ENV = \
 $(objpfx)loadfail: $(libdl)
 LDFLAGS-loadfail = -rdynamic
 
-$(objpfx)loadfail.out: $(objpfx)failobj.so
+$(objpfx)loadfail.out: $(objpfx)failobj.so \
+	$(objpfx)testobj1.so \
+	$(objpfx)testobj2.so \
+	$(objpfx)testobj3.so \
+	$(objpfx)testobj4.so \
+	$(objpfx)testobj5.so
 
 $(objpfx)multiload: $(libdl)
 LDFLAGS-multiload = -rdynamic

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]