a383a6e62d19e8598d75b3bdfd000b84d87424cb
[openwrt-10.03/.git] / toolchain / uClibc / patches-0.9.28 / 300-let-optimized-stringops-override-default-ones.patch
1 From 7b2f125425cf777e7937b533217588e27952b87d Mon Sep 17 00:00:00 2001
2 From: Haavard Skinnemoen <hskinnemoen@atmel.com>
3 Date: Mon, 7 Aug 2006 11:12:50 +0200
4 Subject: [PATCH] Let optimized stringops override default ones
5
6 The default, slow stringops must be archived _before_ the optimized
7 stringops if there is to be any point doing the optimizations in the
8 first place.
9 ---
10  libc/Makefile |    2 +-
11  1 files changed, 1 insertions(+), 1 deletions(-)
12
13 diff --git a/libc/Makefile b/libc/Makefile
14 index 31e4bab..687eac5 100644
15 --- a/libc/Makefile
16 +++ b/libc/Makefile
17 @@ -59,7 +59,7 @@ # will evaluate to no files :(.
18         $(AR) dN 2 $(LIBNAME) $$objs && \
19         $(AR) dN 2 $(LIBNAME) $$objs
20         @for objfile in obj.signal \
21 -                       obj.string.generic obj.string.$(TARGET_ARCH) obj.string \
22 +                       obj.string obj.string.generic obj.string.$(TARGET_ARCH) \
23                         obj.sysdeps.common obj.sysdeps.$(TARGET_ARCH) ; do \
24                 if [ -e $$objfile ] ; then \
25                         if [ "$(MAKE_IS_SILENT)" = "n" ] ; then \
26 -- 
27 1.4.1.1
28