diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-06 19:44:47 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-06 19:44:47 +0000 |
commit | 45e9d9fef03897a6595722f952c120ed99ff0f0f (patch) | |
tree | 9a012541014032cbdff5fe9111f14275c84be720 /libc/sysdeps/linux/e1/Makefile | |
parent | 40759f358c6a457b2e8c132cd135b9c546298be4 (diff) |
George Thanos writes:
Dear Erik,
We downloded uClibc lattest version from the CVS. Still there are some
minor problems with extra/Configs/Config.e1
You have actually set ARCH_HAS_C_SYMBOL_PREFIX to NO which is not
correct for our architecture. Please apply the patch that will fix the
problem.
Best Regards,
- George
P.S. Patch also removes some irritating comments we have added in the past.
Diffstat (limited to 'libc/sysdeps/linux/e1/Makefile')
-rw-r--r-- | libc/sysdeps/linux/e1/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/sysdeps/linux/e1/Makefile b/libc/sysdeps/linux/e1/Makefile index 8bde83fdd..4c9290ae6 100644 --- a/libc/sysdeps/linux/e1/Makefile +++ b/libc/sysdeps/linux/e1/Makefile @@ -43,8 +43,8 @@ all: $(OBJS) $(LIBC) $(LIBC): ar-target ar-target: $(OBJS) $(CRT0_OBJ) $(CTOR_TARGETS) - $(AR) $(ARFLAGS) $(LIBC) $(OBJS) #Tassos - cp $(CRT0_OBJ) $(TOPDIR)lib/$(CRT0_OBJ) #Tassos + $(AR) $(ARFLAGS) $(LIBC) $(OBJS) + cp $(CRT0_OBJ) $(TOPDIR)lib/$(CRT0_OBJ) $(CRT0_OBJ): %.o : %.S $(CC) $(CFLAGS) -c $< -o $@ |