diff options
author | Roland McGrath <roland@gnu.org> | 1995-12-06 00:14:32 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-12-06 00:14:32 +0000 |
commit | 196980f5117c8d38f10d64bf67eeb0924651675f (patch) | |
tree | 4e2a731a1f766ee63e1038d7f38bee3db8c78a2c /Makeconfig | |
parent | 77a58cad3fa0a286bd2581187a2463a762d711ba (diff) | |
download | glibc-196980f5117c8d38f10d64bf67eeb0924651675f.tar glibc-196980f5117c8d38f10d64bf67eeb0924651675f.tar.gz glibc-196980f5117c8d38f10d64bf67eeb0924651675f.tar.bz2 glibc-196980f5117c8d38f10d64bf67eeb0924651675f.zip |
Updated from ../gpl2lgpl.sed /home/gd/gnu/lib/error.c
Diffstat (limited to 'Makeconfig')
-rw-r--r-- | Makeconfig | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Makeconfig b/Makeconfig index 6b403a1694..03df0d56dd 100644 --- a/Makeconfig +++ b/Makeconfig @@ -281,7 +281,7 @@ ifndef +link +link = $(CC) -nostdlib -nostartfiles -o $@ \ $(sysdep-LDFLAGS) $(config-LDFLAGS) $(LDFLAGS) \ $(addprefix $(csu-objpfx),start.o $(+preinit)) \ - $(^:$(common-objpfx)libc.a=$(link-libc)) \ + $(^:$(common-objpfx)libc%=$(link-libc)) \ $(addprefix $(csu-objpfx),$(+postinit)) endif ifndef config-LDFLAGS @@ -292,7 +292,7 @@ endif ifndef link-libc ifeq (yes,$(build-shared)) link-libc = -Wl,-rpath-link=$(common-objdir) -Wl,-rpath=$(default-rpath) \ - $(common-objpfx)libc.so $(gnulib) + $(common-objpfx)libc.so$(libc.so-version) $(gnulib) # Choose the default search path for the dynamic linker based on # where we will install libraries. ifneq ($(libdir),$(slibdir)) @@ -331,10 +331,10 @@ built-program-file = $(dir $(word 2,$^))$(notdir $(word 2,$^)) ifneq (yes,$(build-shared)) built-program-cmd = $(built-program-file) else -, = , +comma = , define built-program-cmd -LD_LIBRARY_PATH=$(common-objdir)$(patsubst -Wl$,-rpath-link=%,:%,\ - $(filter -Wl$,-rpath-link=%,\ +LD_LIBRARY_PATH=$(common-objdir)$(patsubst -Wl$(comma)-rpath-link=%,:%,\ + $(filter -Wl$(comma)-rpath-link=%,\ $(sysdep-LDFLAGS))) \ $(elf-objpfx)ld.so $(built-program-file) endef |