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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B723D158088 for ; Thu, 21 Oct 2021 07:57:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99BE6E087E; Thu, 21 Oct 2021 07:57:57 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7C44CE087E for ; Thu, 21 Oct 2021 07:57:57 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 60DB03433EF for ; Thu, 21 Oct 2021 07:57:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C41E2132 for ; Thu, 21 Oct 2021 07:57:54 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1634797884.2aaa62734b618164a10ae836362d0a17e409a901.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: / X-VCS-Repository: proj/sandbox X-VCS-Files: configure.ac X-VCS-Directories: / X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 2aaa62734b618164a10ae836362d0a17e409a901 X-VCS-Branch: master Date: Thu, 21 Oct 2021 07:57:54 +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: 795045dc-dd2e-4c9f-a49e-403999ec3c72 X-Archives-Hash: 2a62be2c2683fdac6aaa4c108c6cf289 commit: 2aaa62734b618164a10ae836362d0a17e409a901 Author: Mike Frysinger gentoo org> AuthorDate: Thu Oct 21 06:31:24 2021 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Thu Oct 21 06:31:24 2021 +0000 URL: https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=2aaa6273 build: require automake-1.15 Signed-off-by: Mike Frysinger gentoo.org> configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a47a3bc..dac7d9c 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.69]) AC_INIT([sandbox], [2.25], [sandbox@gentoo.org]) -AM_INIT_AUTOMAKE([1.14 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall]) +AM_INIT_AUTOMAKE([1.15 dist-xz foreign no-dist-gzip silent-rules subdir-objects -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4])