summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2019-02-10 06:49:11 +0100
committerKjell Ahlstedt <kjellahlstedt@gmail.com>2019-02-13 12:57:00 +0100
commitd637ca0e2dbc001b54e9358d62ee99875570f3e3 (patch)
treef7b726ee2ae78589567816bc76812af41c995861 /configure.ac
parent014bdf606db1ca3f0bf79423ca53bda67b0b9708 (diff)
downloadsigc++-d637ca0e2dbc001b54e9358d62ee99875570f3e3.tar.gz
configure.ac: Set `foreign` option to fix build
Without the `foreign` option, automake requires a README file, which no longer exists. Makefile.am: error: required file './README' not found Fixes: 8a0cb176 ("README: Rename to README.md and reformat as markdown")
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 42254a1..78eea52 100644
--- a/configure.ac
+++ b/configure.ac
@@ -25,7 +25,7 @@ AC_CONFIG_AUX_DIR([build])
AC_CONFIG_MACRO_DIR([build])
AC_CONFIG_HEADERS([config.h sigc++config.h])
-AM_INIT_AUTOMAKE([1.9 -Wno-portability check-news no-dist-gzip dist-xz tar-ustar no-define nostdinc])
+AM_INIT_AUTOMAKE([1.9 -Wno-portability check-news no-dist-gzip dist-xz tar-ustar no-define nostdinc foreign])
# Support silent build rules.
# Disable by either passing --disable-silent-rules to configure or passing V=1 to make.
m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])