[geos-commits] r3966 - trunk/swig/ruby
svn_geos at osgeo.org
svn_geos at osgeo.org
Tue Dec 10 02:01:23 PST 2013
Author: strk
Date: 2013-12-10 02:01:22 -0800 (Tue, 10 Dec 2013)
New Revision: 3966
Modified:
trunk/swig/ruby/Makefile.am
Log:
Fix Ruby automake
There is a typo or error in the automake file that prevents the Ruby
library from being found or properly linked in.
Patch by "J. Ryan Earl" <oss at jryanearl.us>
See https://github.com/libgeos/libgeos/pull/32
Modified: trunk/swig/ruby/Makefile.am
===================================================================
--- trunk/swig/ruby/Makefile.am 2013-12-10 09:12:22 UTC (rev 3965)
+++ trunk/swig/ruby/Makefile.am 2013-12-10 10:01:22 UTC (rev 3966)
@@ -22,7 +22,7 @@
# Build Ruby module as shared library
rubyextensiondir_LTLIBRARIES = geos.la
geos_la_SOURCES = geos_wrap.cxx
-geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la -l$(RUBY_SO_NAME)
+geos_la_LIBADD = $(top_builddir)/capi/libgeos_c.la $(RUBY_SO_NAME)
# Only need to grab the capi header files
geos_la_CPPFLAGS = -I$(top_builddir)/capi
More information about the geos-commits
mailing list