diff options
author | Sergei Trofimovich <slyfox@gentoo.org> | 2012-02-09 18:27:38 +0000 |
---|---|---|
committer | Sergei Trofimovich <slyfox@gentoo.org> | 2012-02-09 18:27:38 +0000 |
commit | 1011fdeeec8935c118969507b4e67bab2f6434d1 (patch) | |
tree | 4913fb80aefca3ed8d1719666d370eaf0d91b89c /media-libs/libmikmod/files | |
parent | Allow user patches through epatch_user (diff) | |
download | gentoo-2-1011fdeeec8935c118969507b4e67bab2f6434d1.tar.gz gentoo-2-1011fdeeec8935c118969507b4e67bab2f6434d1.tar.bz2 gentoo-2-1011fdeeec8935c118969507b4e67bab2f6434d1.zip |
Fix libmikmod.so installation caused by Makefile.am change. Fixes bug #402771 by Torsten Kaiser.
(Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
Diffstat (limited to 'media-libs/libmikmod/files')
-rw-r--r-- | media-libs/libmikmod/files/libmikmod-3.2.0_beta2-shell.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/media-libs/libmikmod/files/libmikmod-3.2.0_beta2-shell.patch b/media-libs/libmikmod/files/libmikmod-3.2.0_beta2-shell.patch new file mode 100644 index 000000000000..a5aa1157266a --- /dev/null +++ b/media-libs/libmikmod/files/libmikmod-3.2.0_beta2-shell.patch @@ -0,0 +1,18 @@ +Upstream didn't ship Makefile.am so we have to patch bits by hands. +$(SHELL) is needed to run libtool properly (contains bashisms). +LIBTOOL variable uses $(SHELL) in it's definition. + +Gentoo-bug: http://bugs.gentoo.org/401329 +Reported by: Anthony Parsons +diff --git a/libmikmod/Makefile.in b/libmikmod/Makefile.in +index c0638de..070134a 100644 +--- a/libmikmod/Makefile.in ++++ b/libmikmod/Makefile.in +@@ -27,6 +27,7 @@ CC=@CC@ + INSTALL=@INSTALL@ + LIBTOOL=@LIBTOOL@ + MKINSTALLDIRS=${top_srcdir}/mkinstalldirs ++SHELL=@SHELL@ + + DEFS=@DEFS@ + CFLAGS=@CFLAGS@ -Dunix |