patches/binutils/2.20.1a/230-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 2088 4f21ba5f8e91
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@2088
     1
yann@2088
     2
yann@2088
     3
diff -durN binutils-2.20.1.orig/libiberty/Makefile.in binutils-2.20.1/libiberty/Makefile.in
yann@2088
     4
--- binutils-2.20.1.orig/libiberty/Makefile.in	2009-08-23 21:03:58.000000000 +0200
yann@2088
     5
+++ binutils-2.20.1/libiberty/Makefile.in	2010-08-17 19:32:19.000000000 +0200
yann@2088
     6
@@ -227,6 +227,7 @@
yann@1614
     7
 	  $(AR) $(AR_FLAGS) $(TARGETLIB) \
yann@1614
     8
 	    $(REQUIRED_OFILES) $(EXTRA_OFILES) $(LIBOBJS); \
yann@1614
     9
 	  $(RANLIB) $(TARGETLIB); \
yann@1614
    10
+	  cp $(TARGETLIB) ../ ; \
yann@1614
    11
 	  cd ..; \
yann@1614
    12
 	else true; fi
yann@1614
    13