Gentoo Archives: gentoo-commits

From: "Sergei Trofimovich (slyfox)" <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in games-action/garden/files: garden-1.0.8-drop-AS_INIT.patch
Date: Sun, 30 Jun 2013 07:05:37
Message-Id: 20130630070530.A31902171C@flycatcher.gentoo.org
1 slyfox 13/06/30 07:05:30
2
3 Added: garden-1.0.8-drop-AS_INIT.patch
4 Log:
5 Fixed endless cofigure loop when /bin/sh=dash (bug #475248).
6
7 (Portage version: 2.2.0_alpha182_p1/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
8
9 Revision Changes Path
10 1.1 games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch?rev=1.1&content-type=text/plain
14
15 Index: garden-1.0.8-drop-AS_INIT.patch
16 ===================================================================
17 At least for autoconf-2.69 AS_INIT is called by AC_INIT.
18
19 When using /bin/dash calling AS_INIT directly leads to infinite
20 reexec loop.
21
22 Gentoo-bug: http://bugs.gentoo.org/475248
23 diff --git a/configure.ac b/configure.ac
24 index eb0002f..6c77ef9 100644
25 --- a/configure.ac
26 +++ b/configure.ac
27 @@ -5,7 +5,7 @@ AC_PREREQ(2.62)
28 AC_INIT([GARDEN],
29 [1.0.8],
30 [bubla@×××××××××××××××××.net])
31 -AS_INIT
32 +
33 AC_CONFIG_AUX_DIR([build-aux])
34 AM_INIT_AUTOMAKE([-Wall])
35 AC_CONFIG_SRCDIR([src/input.h])