From: Ayush Jain Date: Tue, 23 May 2023 06:55:36 +0000 (+0530) Subject: Rasdaemon: Fix autoreconf build error X-Git-Tag: v0.8.1~83 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2ee6734e95a56dd15879a88e08080db53d6af486;p=users%2Fmchehab%2Frasdaemon.git Rasdaemon: Fix autoreconf build error When building rasdaemon with autoreconf, on certain distros we see the following error message. Makefile.am: error: required file './README' not found Autoreconf looks for README file instead of README.md Fix this by passing 'foreign' to AM_INIT_AUTOMAKE. Signed-off-by: Ayush Jain Signed-off-by: Mauro Carvalho Chehab --- diff --git a/configure.ac b/configure.ac index ab5697d..7b39f59 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AM_SILENT_RULES([yes]) AC_CANONICAL_TARGET AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_HEADERS([config.h]) -AM_INIT_AUTOMAKE +AM_INIT_AUTOMAKE([foreign]) AC_PROG_CC AC_PROG_INSTALL LT_INIT