summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch')
-rw-r--r--meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch b/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch
new file mode 100644
index 0000000000..cd1efd7b15
--- /dev/null
+++ b/meta-oe/recipes-support/open-vcdiff/files/aclocal-amflags-fix.patch
@@ -0,0 +1,33 @@
1Fix this error:
2
3| aclocal: error: non-option arguments are not accepted: '\'.
4
5Starting from commit v1.11-662-g52246cc, when given non-option arguments, aclocal rejects them, instead of silently ignoring them.
6
7Declare ACLOCAL_AMFLAGS as a single line because autoreconf can't handle multiline.
8
9Notice that ACLOCAL_AMFLAGS is deprecated.
10In configure.ac, AC_CONFIG_MACRO_DIRS should be used (instead of AC_CONFIG_MACRO_DIR) but requires automake 1.13+.
11
12Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
13---
14 Makefile.am | 3 +--
15 1 file changed, 1 insertion(+), 2 deletions(-)
16
17diff --git a/Makefile.am b/Makefile.am
18index 5c765c7..f4295a6 100644
19--- a/Makefile.am
20+++ b/Makefile.am
21@@ -1,8 +1,7 @@
22 ## Process this file with automake to produce Makefile.in
23
24 # Make sure that when we re-make ./configure, we get the macros we need
25-ACLOCAL_AMFLAGS = -I m4 \
26- -I gflags/m4
27+ACLOCAL_AMFLAGS = -I m4 -I gflags/m4
28
29 # This is so we can #include <google/vcencoder.h> or <gtest/gtest.h>
30 AM_CPPFLAGS = -I$(top_srcdir)/src \
31--
321.8.5.4
33