diff options
author | Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> | 2015-10-19 12:42:08 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-21 22:37:11 +0200 |
commit | d1597ffb2c44273b793adc7f28dbbcb1b9a30ab3 (patch) | |
tree | 1fb381e98d94df755feccb35f79dd9ad64b1d521 | |
parent | 19f9f6c8d549ddff6408545660c8abedf5ce329b (diff) |
jq: disable maintainer mode
Since version 1.5, maintainer mode is enabled by default. We don't need
this, and is in particular problematic because it requires bison 3.0.
Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/jq/jq.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/jq/jq.mk b/package/jq/jq.mk index dd132768c..8053e392f 100644 --- a/package/jq/jq.mk +++ b/package/jq/jq.mk @@ -12,4 +12,7 @@ JQ_LICENSE_FILES = COPYING # uses c99 specific features JQ_CONF_ENV += CFLAGS="$(TARGET_CFLAGS) -std=c99" +# jq explicitly enables maintainer mode, which we don't need/want +JQ_CONF_OPTS += --disable-maintainer-mode + $(eval $(autotools-package)) |