diff options
author | Roland McGrath <roland@gnu.org> | 1996-06-04 20:14:46 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-06-04 20:14:46 +0000 |
commit | 14d898aef6373abaf64a7b17f32e8ce3f655cdf3 (patch) | |
tree | fe797356169d8a79e934896473a7b3e61b4dd9a2 /elf | |
parent | a2b934be254cad6c725baf738f0d97df985522c6 (diff) | |
download | glibc-14d898aef6373abaf64a7b17f32e8ce3f655cdf3.tar.gz glibc-14d898aef6373abaf64a7b17f32e8ce3f655cdf3.tar.xz glibc-14d898aef6373abaf64a7b17f32e8ce3f655cdf3.zip |
* elf/Makefile (subdir_lib): Change this target to lib-noranlib.
(lib-noranlib): Depend on on $(extra-objs). * errno.h: Move __END_DECLS out of #ifdef's so it matches __BEGIN_DECLS.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/elf/Makefile b/elf/Makefile index 354fbbcc70..9909476fcc 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -43,14 +43,14 @@ generated = librtld.so dl-allobjs.so install-others = $(slibdir)/$(rtld-installed-name) install-bin = ldd -# Make sure this is built in the `make lib' pass so it can be used +# Make sure these things is built in the `make lib' pass so it can be used # to run programs during the `make others' pass. -subdir_lib: $(objpfx)ld.so +lib-noranlib: $(objpfx)ld.so $(addprefix $(objpfx),$(extra-objs)) ifneq (,$(filter linux%,$(config-os))) extra-objs += linux-compat.so install-others += $(slibdir)/ld-linux.so.1 -subdir_lib: $(objpfx)ld-linux.so.1 +lib-noranlib: $(objpfx)ld-linux.so.1 endif endif |