diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2011-07-14 09:33:44 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-07-14 09:33:44 +0200 |
commit | d10125af7fa172d0bc5682d98b1aff627c6fd101 (patch) | |
tree | 9030ef3bd9f060221d9e5eb6f522f81a6ceba392 /package/lzo/lzo-2.03-fix-makefile-am.patch | |
parent | 749213ffdf921f88d74cd7d587854dfe46b0405e (diff) | |
download | buildroot-novena-d10125af7fa172d0bc5682d98b1aff627c6fd101.tar.gz buildroot-novena-d10125af7fa172d0bc5682d98b1aff627c6fd101.zip |
lzo: bump version
This contains an updated build system, so the patches are no longer needed.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/lzo/lzo-2.03-fix-makefile-am.patch')
-rw-r--r-- | package/lzo/lzo-2.03-fix-makefile-am.patch | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/package/lzo/lzo-2.03-fix-makefile-am.patch b/package/lzo/lzo-2.03-fix-makefile-am.patch deleted file mode 100644 index 9f23e40db..000000000 --- a/package/lzo/lzo-2.03-fix-makefile-am.patch +++ /dev/null @@ -1,24 +0,0 @@ -Makefile.am is not allowed to override CFLAGS/CPPFLAGS, it must use -AM_CFLAGS and AM_CPPFLAGS. This is needed in order for autoreconf to -work on this package. - -Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> ---- - src/Makefile.am | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -Index: lzo-2.03/src/Makefile.am -=================================================================== ---- lzo-2.03.orig/src/Makefile.am -+++ lzo-2.03/src/Makefile.am -@@ -7,8 +7,8 @@ - SUFFIXES = .S - - INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir) --CPPFLAGS = $(LZO_CPPFLAGS) $(configure_CPPFLAGS) $(LZO_EXTRA_CPPFLAGS) --CFLAGS = $(LZO_CFLAGS) $(configure_CFLAGS) $(LZO_EXTRA_CFLAGS) -+AM_CPPFLAGS = $(LZO_CPPFLAGS) $(configure_CPPFLAGS) $(LZO_EXTRA_CPPFLAGS) -+AM_CFLAGS = $(LZO_CFLAGS) $(configure_CFLAGS) $(LZO_EXTRA_CFLAGS) - - lib_LTLIBRARIES = liblzo2.la - |