# HG changeset patch # User Eric Warmenhoven # Date 985043562 0 # Node ID 35dbd22e3af5b0fb04e7156583354fd4a5df237f # Parent 0bdc891164ad81919cd809ab13015c74170538e2 [gaim-migrate @ 1630] fix openbsd2.8. committer: Tailor Script diff -r 0bdc891164ad -r 35dbd22e3af5 plugins/Makefile.am --- a/plugins/Makefile.am Mon Mar 19 22:40:07 2001 +0000 +++ b/plugins/Makefile.am Mon Mar 19 23:12:42 2001 +0000 @@ -4,7 +4,11 @@ $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) $(PLUGIN_LIBS) rm -f tmp$@.lo tmp$@.o libtmp$@.la - cp .libs/libtmp$@.so $@ + if test -f .libs/libtmp$@.so ; then \ + cp .libs/libtmp$@.so $@ ; \ + elif test -f .libs/libtmp$@.so.0.0 ; then \ + cp .libs/libtmp$@.so.0.0 $@ ; \ + fi rm -f .libs/libtmp$@.* if PLUGINS