diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-06-05 21:25:53 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-06-05 21:25:53 +0000 |
commit | 84db602fe3898f49b62e09e496360e1c82f47799 (patch) | |
tree | a14be8d0f801d3cc3cc1b1c163417fd3f53130f9 /libc | |
parent | 55a99c3281d199e140774103e0d35f1353a67359 (diff) |
Patch from Peter S. Mazinger to make the get-needed-libgcc-objects
script work with newer binutils versions.
Diffstat (limited to 'libc')
-rw-r--r-- | libc/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/Makefile b/libc/Makefile index a9a7e3244..e43580847 100644 --- a/libc/Makefile +++ b/libc/Makefile @@ -76,8 +76,9 @@ $(LIBGCC_NEED): $(TOPDIR)lib/$(LIBNAME) @rm -rf tmp @mkdir tmp $(AR) rv $@ - @(cd tmp && CC=$(CC) LD=$(LD) LDFLAGS=$(CPU_LDFLAGS-y) NM=$(NM) AR=$(AR) \ - LIBGCC=$(LIBGCC) CRTOBJS=$(CRTOBJS) \ + (cd tmp && CC=$(CC) LD=$(LD) LDFLAGS=$(CPU_LDFLAGS-y) NM=$(NM) AR=$(AR) \ + LIBGCC=$(LIBGCC) \ + CRTOBJS=$(CRTOBJS) \ /bin/sh $(TOPDIR)../extra/scripts/get-needed-libgcc-objects.sh) halfclean: |