From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D8EC9158094 for ; Sun, 28 Aug 2022 12:26:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28871E08CD; Sun, 28 Aug 2022 12:26:23 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DCB7E08CD for ; Sun, 28 Aug 2022 12:26:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B7C59340D3C for ; Sun, 28 Aug 2022 12:26:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 28C3F574 for ; Sun, 28 Aug 2022 12:26:20 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1661687411.e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae.grobian@gentoo> Subject: [gentoo-commits] proj/portage-utils:master commit in: / X-VCS-Repository: proj/portage-utils X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae X-VCS-Branch: master Date: Sun, 28 Aug 2022 12:26:20 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f45732b5-91f4-4f70-a614-56995ee0140f X-Archives-Hash: a340ef9cac97231e2fc473359f0bbf04 commit: e2b0dfcb3a678f74454fd2b651dd3aab0b5539ae Author: David Seifert gentoo org> AuthorDate: Sun Aug 28 11:40:29 2022 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Sun Aug 28 11:50:11 2022 +0000 URL: https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=e2b0dfcb 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 gentoo.org> Signed-off-by: Fabian Groffen gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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])