diff options
author | 2022-08-28 13:40:29 +0200 | |
---|---|---|
committer | 2022-08-28 13:50:11 +0200 | |
commit | e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae (patch) | |
tree | c2555b3ff11e331d7a3cfbc96d9a061b2793a179 | |
parent | libq/atom: fix atom_compare for "0" version components (diff) | |
download | portage-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.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 013e831a..de9e60c3 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]) |