diff options
author | Stephen Torri <storri@users.sourceforge.net> | 2004-09-05 02:14:38 +0000 |
---|---|---|
committer | Stephen Torri <storri@users.sourceforge.net> | 2004-09-05 02:14:38 +0000 |
commit | b6194b818abadf3054c9a72df8a72e491507985a (patch) | |
tree | b681af3319c07d4c13d346a460313b901ec74d92 /misc | |
parent | 00c9c88fda8396c1626095f313dc359d767f63b1 (diff) | |
download | xine-lib-b6194b818abadf3054c9a72df8a72e491507985a.tar.gz xine-lib-b6194b818abadf3054c9a72df8a72e491507985a.tar.bz2 |
autogen.sh:
Fix what I perceive to be a bug only on platforms that have a automake
installed that contains multiple version. Gentoo releases a package of
automake that contains all the latest stable version (1.4 to 1.8). In
order to use a specific one besides the default you need to declare
WANT_AUTOMAKE=1.6 in your environment varibles.
------------------------------------
doc/faq/Makefile.am
doc/hackersguide/Makefile.am
Applied Frantisek Dvorak changes for the documentation.
CVS patchset: 6939
CVS date: 2004/09/05 02:14:38
Diffstat (limited to 'misc')
-rw-r--r-- | misc/Makefile.common | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/Makefile.common b/misc/Makefile.common index 4f6f663d6..5e26106a0 100644 --- a/misc/Makefile.common +++ b/misc/Makefile.common @@ -43,7 +43,7 @@ uninstall-includeHEADERS: done uninstall-hook: - @if test '$(libdir)' = '$(XINE_PLUGINDIR)'; then \ + @if echo '$(libdir)' | egrep ^'$(XINE_PLUGINDIR)' >/dev/null; then \ list='$(lib_LTLIBRARIES)'; for p in $$list; do \ p="`echo $$p | sed -e 's/\.la$$/\.so/g;s|^.*/||'`"; \ echo " rm -f $(DESTDIR)$(libdir)/$$p"; \ |