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 | f1985494b88d04c826e1672c40084d0bdb06937f (patch) | |
tree | 3ace7102271043b07d86ee5b8e7721f32838b67f /media-libs/libmikmod/files | |
parent | Allow user patches through epatch_user (diff) | |
download | historical-f1985494b88d04c826e1672c40084d0bdb06937f.tar.gz historical-f1985494b88d04c826e1672c40084d0bdb06937f.tar.bz2 historical-f1985494b88d04c826e1672c40084d0bdb06937f.zip |
Fix libmikmod.so installation caused by Makefile.am change. Fixes bug #402771 by Torsten Kaiser.
Package-Manager: portage-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 |