From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B6B851381F3 for ; Sat, 17 Nov 2012 19:16:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5EBD2E0552; Sat, 17 Nov 2012 19:16:26 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C0817E0534 for ; Sat, 17 Nov 2012 19:16:25 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D109333D8E7 for ; Sat, 17 Nov 2012 19:16:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 5019DE5444 for ; Sat, 17 Nov 2012 19:16:23 +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: <1353179758.49d9bad488401392f38f2a3de80f0e424bcccaec.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: 49d9bad488401392f38f2a3de80f0e424bcccaec X-VCS-Branch: master Date: Sat, 17 Nov 2012 19:16:23 +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-Archives-Salt: cf0ff0f6-15c7-4e00-abdd-72eabfd85cb5 X-Archives-Hash: 31013ffad5f65da7431eb50714e5b0d3 commit: 49d9bad488401392f38f2a3de80f0e424bcccaec Author: Mike Frysinger gentoo org> AuthorDate: Mon Aug 13 03:08:27 2012 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Sat Nov 17 19:15:58 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sandbox.git;a=commit;h=49d9bad4 require at least automake 1.11.6 We use AM_PROG_AR which was added after 1.11.1 at some point. Signed-off-by: Mike Frysinger gentoo.org> --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 3529dcf..661b494 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ AC_PREREQ([2.61]) AC_INIT([sandbox], [2.7], [sandbox@gentoo.org]) -AM_INIT_AUTOMAKE([1.11 dist-xz no-dist-gzip silent-rules -Wall]) +AM_INIT_AUTOMAKE([1.11.6 dist-xz no-dist-gzip silent-rules -Wall]) AM_SILENT_RULES([yes]) # AM_INIT_AUTOMAKE([silent-rules]) is broken atm AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4])