From a6cf5da4fd6253b5f92ff4bee84d9e02c2439326 Mon Sep 17 00:00:00 2001 From: David Lamparter Date: Fri, 16 Dec 2016 17:33:31 +0100 Subject: [PATCH] build: automake 1.12 to deal with flex & bison bison conditionally writes its output to different files based on the filenames specified in the source code. This could be disabled, however... flex changes its output filenames when "prefix" is specified. And ylwrap from <1.11 doesn't understand how to handle the header file... ...so this requires automake 1.12 which can deal with this properly. Signed-off-by: David Lamparter --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index caf3836f48..40eab0a9a1 100755 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,7 @@ AC_CANONICAL_TARGET() # Disable portability warnings -- our automake code (in particular # common.am) uses some constructs specific to gmake. -AM_INIT_AUTOMAKE([1.6 -Wno-portability]) +AM_INIT_AUTOMAKE([1.12 -Wno-portability]) m4_ifndef([AM_SILENT_RULES], [m4_define([AM_SILENT_RULES],[])]) AM_SILENT_RULES([yes]) AC_CONFIG_HEADERS(config.h) -- 2.39.5