diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-26 19:43:06 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-05-26 19:43:06 +0000 |
commit | e449ce9a422304b178d32263dfec5e82a4adb6b3 (patch) | |
tree | d5ee366da764ba1c61e9884a22b95f052433a073 /libc/Makefile | |
parent | 5ed08475b3760975e075211a7427c3eb5e00142a (diff) |
Minor fix.
Diffstat (limited to 'libc/Makefile')
-rw-r--r-- | libc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/Makefile b/libc/Makefile index 35d6b3e4a..fdb774b17 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -46,13 +46,13 @@ shared: $(TOPDIR)lib/$(LIBNAME) @(cd tmp; CC=$(CC) LD=$(LD) /bin/sh ../../extra/scripts/get-needed-libgcc-objects.sh) if [ -s ./tmp/libgcc-need.a ] ; then \ $(CC) -g $(LDFLAGS) -shared -o $(SHARED_FULLNAME) \ - -Wl,-soname=$(SHARED_MAJORNAME) -Wl,--whole-archive \ + -Wl,-soname,$(SHARED_MAJORNAME) -Wl,--whole-archive \ ./$(LIBNAME) ./tmp/libgcc-need.a \ $(LDSO) -Wl,--dynamic-linker,$(DYNAMIC_LINKER); \ else \ $(CC) -g $(LDFLAGS) -shared -o $(SHARED_FULLNAME) \ -Wl,-soname,$(SHARED_MAJORNAME) -Wl,--whole-archive \ - ./$(LIBNAME) $(LDSO) -Wl,-dynamic-linker=$(DYNAMIC_LINKER); \ + ./$(LIBNAME) $(LDSO) -Wl,-dynamic-linker,$(DYNAMIC_LINKER); \ fi @rm -rf tmp install -d $(TOPDIR)lib |