patches/gcc/4.4.7/220-libiberty-pic.patch
author Trevor Woerner <trevor.woerner@linaro.org>
Tue Feb 25 13:34:48 2014 -0500 (2014-02-25)
changeset 3302 ea7e988e6244
parent 2406 95e0c248d257
permissions -rw-r--r--
newlib: fix extract process for custom version

newlib: fix extract process for custom version

If the user specifies the use of a custom newlib version, the logic in the
extract function was reversed, so this step would fail.

Signed-off-by: Trevor Woerner <trevor.woerner@linaro.org>
[yann.morin.1998@free.fr: keep leading indentation]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <c727adf1b7bd2c1e891d.1393353347@openSUSE-i7>
Patchwork-Id: 324060
yann@2149
     1
diff -durN gcc-4.4.5.orig/libiberty/Makefile.in gcc-4.4.5/libiberty/Makefile.in
yann@2149
     2
--- gcc-4.4.5.orig/libiberty/Makefile.in	2008-10-22 15:30:19.000000000 +0200
yann@2149
     3
+++ gcc-4.4.5/libiberty/Makefile.in	2010-10-09 23:02:28.000000000 +0200
yann@2149
     4
@@ -227,6 +227,7 @@
yann@2149
     5
 	  $(AR) $(AR_FLAGS) $(TARGETLIB) \
yann@2149
     6
 	    $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
yann@2149
     7
 	  $(RANLIB) $(TARGETLIB); \
yann@2149
     8
+	  cp $(TARGETLIB) ../ ; \
yann@2149
     9
 	  cd ..; \
yann@2149
    10
 	else true; fi
yann@2149
    11