patches/ltrace/0.4/120-alpha-support.patch
author Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com>
Sat Jul 14 19:52:58 2012 +0200 (2012-07-14)
changeset 2998 7b1dda3ab075
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@988
     1
diff -durN ltrace-0.4.orig/Makefile.in ltrace-0.4/Makefile.in
yann@988
     2
--- ltrace-0.4.orig/Makefile.in	2008-10-26 15:34:21.000000000 +0100
yann@988
     3
+++ ltrace-0.4/Makefile.in	2008-10-26 15:37:40.000000000 +0100
yann@988
     4
@@ -5,6 +5,7 @@
yann@988
     5
 OS		:= @HOST_OS@
yann@988
     6
 ARCH		:= $(shell echo "@HOST_ARCH@" |sed -e s/i.86/i386/      \
yann@988
     7
 						   -e s/sun4u/sparc64/  \
yann@988
     8
+						   -e s/alpha.*/alpha/  \
yann@988
     9
 						   -e s/arm.*/arm/      \
yann@988
    10
 						   -e s/sa110/arm/      \
yann@988
    11
 						   -e s/ppc64/ppc/      \