From a5432743148169b8b47e456869c0a4fadf1a860a Mon Sep 17 00:00:00 2001 From: Morgan Willcock Date: Sun, 17 Mar 2024 09:03:02 +0000 Subject: [PATCH] Remove subdir-objects from Automake initialisation subdir-objects only applies to literal object files rather than any file generated from a make rule. It shouldn't be relevant here because nothing is producing object files. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index d60947d3..960d8759 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ([2.71]) AC_INIT([ags-manual], [0.9.12]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([-Werror -Wall foreign subdir-objects]) +AM_INIT_AUTOMAKE([-Werror -Wall foreign]) AM_SILENT_RULES([yes]) AGS_PROG_PANDOC([$srcdir/lua/write_feature_check.lua])