patches/gcc/4.4.7/220-libiberty-pic.patch
author Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com>
Sat Jul 14 19:52:58 2012 +0200 (2012-07-14)
changeset 2998 7b1dda3ab075
parent 2406 95e0c248d257
permissions -rw-r--r--
kconfig: fix compatibility with older flex versions

Older flex versions require there be no space between options and
their arguments. For example '-P zconf' is not correct and should
be '-Pzconf'. This is for example the case for flex-2.5.4 shipped
with CentOS 5.8.

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Message-Id: <9652ce148bddc1def484.1339241000@beantl019720>
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