diff options
author | 2013-06-30 07:05:30 +0000 | |
---|---|---|
committer | 2013-06-30 07:05:30 +0000 | |
commit | 75b5f92d314113c34daf66f99cc39be22b64c578 (patch) | |
tree | b504008842d1f907a1c45a9b519dfbd00e4e6b7f /games-action/garden/files | |
parent | Call epatch_user #455828 by Alexander Krause. (diff) | |
download | gentoo-2-75b5f92d314113c34daf66f99cc39be22b64c578.tar.gz gentoo-2-75b5f92d314113c34daf66f99cc39be22b64c578.tar.bz2 gentoo-2-75b5f92d314113c34daf66f99cc39be22b64c578.zip |
Fixed endless cofigure loop when /bin/sh=dash (bug #475248).
(Portage version: 2.2.0_alpha182_p1/cvs/Linux x86_64, signed Manifest commit with key 611FF3AA)
Diffstat (limited to 'games-action/garden/files')
-rw-r--r-- | games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch b/games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch new file mode 100644 index 000000000000..69cff8fa319d --- /dev/null +++ b/games-action/garden/files/garden-1.0.8-drop-AS_INIT.patch @@ -0,0 +1,19 @@ +At least for autoconf-2.69 AS_INIT is called by AC_INIT. + +When using /bin/dash calling AS_INIT directly leads to infinite +reexec loop. + +Gentoo-bug: http://bugs.gentoo.org/475248 +diff --git a/configure.ac b/configure.ac +index eb0002f..6c77ef9 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -5,7 +5,7 @@ AC_PREREQ(2.62) + AC_INIT([GARDEN], + [1.0.8], + [bubla@users.sourceforge.net]) +-AS_INIT ++ + AC_CONFIG_AUX_DIR([build-aux]) + AM_INIT_AUTOMAKE([-Wall]) + AC_CONFIG_SRCDIR([src/input.h]) |