diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2013-06-30 07:05:38 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2013-06-30 07:05:38 +0000 |
commit | 3f9203a6a1c7aec29c0eab87b87e3eb8bab0c6ad (patch) | |
tree | 65572d7bb585919b292a15636a904943851a64fa /games-action/garden/files | |
parent | Call epatch_user #455828 by Alexander Krause. (diff) | |
download | historical-3f9203a6a1c7aec29c0eab87b87e3eb8bab0c6ad.tar.gz historical-3f9203a6a1c7aec29c0eab87b87e3eb8bab0c6ad.tar.bz2 historical-3f9203a6a1c7aec29c0eab87b87e3eb8bab0c6ad.zip |
Fixed endless cofigure loop when /bin/sh=dash (bug #475248).
Package-Manager: portage-2.2.0_alpha182_p1/cvs/Linux x86_64
Manifest-Sign-Key: 0x611FF3AA
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]) |