From 3e63d8d321298c54248584e747a837b1ee83ff5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Blin?= <sebastien.blin@savoirfairelinux.com> Date: Wed, 22 May 2024 10:02:19 -0400 Subject: [PATCH] autotools: avoid to fail due to missing README file "Makefile.am: error: required file './README' not found" Change-Id: I8729ea1f38bb14893e5cce6ed3f76065e825efb8 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 34204ed8e0..a06483b447 100644 --- a/configure.ac +++ b/configure.ac @@ -20,7 +20,7 @@ AC_CONFIG_MACRO_DIR([m4]) AC_CANONICAL_BUILD AC_CANONICAL_HOST -AM_INIT_AUTOMAKE([-Wno-portability subdir-objects]) +AM_INIT_AUTOMAKE([-Wno-portability subdir-objects foreign]) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) # required by automake 1.12 AC_CONFIG_HEADERS([config.h]) -- GitLab