aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app-misc/jq/files/1.3-fix-automake-global-options-error.patch')
-rw-r--r--app-misc/jq/files/1.3-fix-automake-global-options-error.patch34
1 files changed, 34 insertions, 0 deletions
diff --git a/app-misc/jq/files/1.3-fix-automake-global-options-error.patch b/app-misc/jq/files/1.3-fix-automake-global-options-error.patch
new file mode 100644
index 0000000..335e922
--- /dev/null
+++ b/app-misc/jq/files/1.3-fix-automake-global-options-error.patch
@@ -0,0 +1,34 @@
+From f0d1c39b5bbb4ccc517773eb635ba7f38ec7da1a Mon Sep 17 00:00:00 2001
+From: Ankur <ankz.kothari@gmail.com>
+Date: Sun, 1 Sep 2013 18:58:26 +1000
+Subject: [PATCH] Call AM_INIT_AUTOMAKE once only
+
+Fixes build with automake-1.14
+---
+ configure.ac | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 76a49a9..d6d2d38 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -4,7 +4,7 @@ AC_INIT([jq], [1.3], [mu@netsoc.tcd.ie],
+ dnl Created autoconf implementation thompson@dtosolutions, 26NOV12
+ AC_PREREQ([2.61])
+ AC_CONFIG_AUX_DIR([config])
+-AM_INIT_AUTOMAKE([parallel-tests foreign])
++AM_INIT_AUTOMAKE([parallel-tests foreign -Wall])
+ AM_SILENT_RULES([yes])
+ AC_PROG_CC
+ AC_PROG_CC_STDC
+@@ -66,7 +66,6 @@ AC_SUBST([BUNDLER], ["$bundle_cmd"])
+
+ dnl AC_CONFIG_MACRO_DIR([m4])
+ AC_CONFIG_HEADERS(config.h)
+-AM_INIT_AUTOMAKE([-Wall])
+ AC_CONFIG_FILES([Makefile])
+ AC_OUTPUT
+
+--
+1.8.5.1
+