aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2022-08-28 13:40:29 +0200
committerFabian Groffen <grobian@gentoo.org>2022-08-28 13:50:11 +0200
commite2b0dfcb3a678f74454fd2b651dd3aab0b5539ae (patch)
treec2555b3ff11e331d7a3cfbc96d9a061b2793a179
parentlibq/atom: fix atom_compare for "0" version components (diff)
downloadportage-utils-e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae.tar.gz
portage-utils-e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae.tar.bz2
portage-utils-e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae.zip
Use Automake in `foreign` mode
* Otherwise we get errors such as Makefile.am: error: required file './AUTHORS' not found Makefile.am: error: required file './ChangeLog' not found Makefile.am: error: required file './NEWS' not found Signed-off-by: David Seifert <soap@gentoo.org> Signed-off-by: Fabian Groffen <grobian@gentoo.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 013e831..de9e60c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@
AC_PREREQ([2.71])
AC_INIT([portage-utils],[git])
-AM_INIT_AUTOMAKE([1.11 dist-xz no-dist-gzip silent-rules -Wall])
+AM_INIT_AUTOMAKE([1.11 dist-xz foreign no-dist-gzip silent-rules -Wall])
AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm
AM_MAINTAINER_MODE([enable])
AC_CONFIG_HEADERS([config.h])