# HG changeset patch # User Elliott Sales de Andrade # Date 1248066617 0 # Node ID 48148e688ad116acfe8a0959b2fff7e351156d22 # Parent 1316f2b180bea0b2066a047a5b9336cdb23b205e Some versions of libtool seem to output things a little differently, so change the automatic plugin-building stuff to copy the right files, and still be compatible with OS X. diff -r 1316f2b180be -r 48148e688ad1 libpurple/plugins/Makefile.am --- a/libpurple/plugins/Makefile.am Mon Jul 20 01:28:11 2009 +0000 +++ b/libpurple/plugins/Makefile.am Mon Jul 20 05:10:17 2009 +0000 @@ -157,5 +157,5 @@ $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_builddir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la - @cp .libs/libtmp$@.so.so $@ + @cp .libs/libtmp$@*.so $@ @rm -rf .libs/libtmp$@.* diff -r 1316f2b180be -r 48148e688ad1 pidgin/plugins/Makefile.am --- a/pidgin/plugins/Makefile.am Mon Jul 20 01:28:11 2009 +0000 +++ b/pidgin/plugins/Makefile.am Mon Jul 20 05:10:17 2009 +0000 @@ -140,5 +140,5 @@ $(LIBTOOL) --mode=compile $(CC) -DHAVE_CONFIG_H -I$(top_builddir) $(AM_CPPFLAGS) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la - @cp .libs/libtmp$@.so.so $@ + @cp .libs/libtmp$@*.so $@ @rm -rf .libs/libtmp$@.*