diff options
Diffstat (limited to 'meta-oe/recipes-devtools/jq/files/automake-once-fix.patch')
-rw-r--r-- | meta-oe/recipes-devtools/jq/files/automake-once-fix.patch | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/meta-oe/recipes-devtools/jq/files/automake-once-fix.patch b/meta-oe/recipes-devtools/jq/files/automake-once-fix.patch deleted file mode 100644 index 0a1d1a2222..0000000000 --- a/meta-oe/recipes-devtools/jq/files/automake-once-fix.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | Upstream-Status: Applied | ||
2 | https://github.com/stedolan/jq/commit/f0d1c39b5bbb4ccc517773eb635ba7f38ec7da1a | ||
3 | |||
4 | Fixes build with automake-1.14 | ||
5 | |||
6 | diff --git a/configure.ac b/configure.ac | ||
7 | index 76a49a9..d6d2d38 100644 | ||
8 | --- a/configure.ac | ||
9 | +++ b/configure.ac | ||
10 | @@ -4,7 +4,7 @@ AC_INIT([jq], [1.3], [mu@netsoc.tcd.ie], | ||
11 | dnl Created autoconf implementation thompson@dtosolutions, 26NOV12 | ||
12 | AC_PREREQ([2.61]) | ||
13 | AC_CONFIG_AUX_DIR([config]) | ||
14 | -AM_INIT_AUTOMAKE([parallel-tests foreign]) | ||
15 | +AM_INIT_AUTOMAKE([parallel-tests foreign -Wall]) | ||
16 | AM_SILENT_RULES([yes]) | ||
17 | AC_PROG_CC | ||
18 | AC_PROG_CC_STDC | ||
19 | @@ -66,7 +66,6 @@ AC_SUBST([BUNDLER], ["$bundle_cmd"]) | ||
20 | |||
21 | dnl AC_CONFIG_MACRO_DIR([m4]) | ||
22 | AC_CONFIG_HEADERS(config.h) | ||
23 | -AM_INIT_AUTOMAKE([-Wall]) | ||
24 | AC_CONFIG_FILES([Makefile]) | ||
25 | AC_OUTPUT | ||
26 | |||
27 | -- | ||
28 | 1.8.5.4 | ||
29 | |||