diff options
author | Roland McGrath <roland@gnu.org> | 1996-05-09 13:18:18 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-05-09 13:18:18 +0000 |
commit | 782e865067efc414b8dca36d8dd632d621ba94ef (patch) | |
tree | 70afd771f671f6b3e30ee85f5ff505bb35b5181f | |
parent | 03d0a7e2aa3c1a2134c9fa0a957292f4316e0ea5 (diff) | |
download | glibc-782e865067efc414b8dca36d8dd632d621ba94ef.zip glibc-782e865067efc414b8dca36d8dd632d621ba94ef.tar.gz glibc-782e865067efc414b8dca36d8dd632d621ba94ef.tar.bz2 |
Thu May 9 09:17:46 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Rules (static-only-routines rule): Use dummy.o, not dummy.so.
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Rules | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,3 +1,7 @@ +Thu May 9 09:17:46 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> + + * Rules (static-only-routines rule): Use dummy.o, not dummy.so. + Wed May 8 20:04:29 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> * extract-dynsym: New file. @@ -145,7 +145,7 @@ $(common-objpfx)sor-$(subdir): Makefile ifdef static-only-routines # These routines are to be omitted from the shared library object, # so we replace the PIC objects for them with the dummy object file. -$(static-only-routines:%=$(objpfx)%.so): %.so: $(common-objpfx) dummy.so +$(static-only-routines:%=$(objpfx)%.so): %.so: $(common-objpfx) dummy.o rm -f $@ ln $< $@ endif |