install modules fix
Ed Sweetman <[email protected]>
| Newsgroups | gmane.comp.audio.zinf.devel |
|---|---|
| Message-ID | <[email protected]> |
This installs the modules with the correct name and cleans up the plugin dir from the unused irellevent .la files This only effects the system dir that you installed to, not the local source tree.
Makefilepatch.patch
(text/plain, 441 B)
--- ./Makefile.am 2003-03-25 14:53:04.000000000 -0500 +++ ./Makefile-correct.am 2003-03-25 14:51:09.000000000 -0500 @@ -44,8 +44,9 @@ name=`basename $$plugin .la`; \ lib="$$dir/$$name$(so_ext)"; \ if [ -e "$$lib" ]; then \ - ln -s $$lib $$dir/`echo $$name | sed 's/-/./'`; \ + mv $$lib $$dir/`echo $$name | sed 's/-/./'`; \ fi \ done + rm -f $(pkglibdir)/plugins/*.la install-exec-hook: install-ln-plugins