[geos-commits] r2103 - branches/3.0/swig
svn_geos at osgeo.org
svn_geos at osgeo.org
Wed Jan 2 18:31:09 EST 2008
Author: sgillies
Date: 2008-01-02 18:31:09 -0500 (Wed, 02 Jan 2008)
New Revision: 2103
Modified:
branches/3.0/swig/Makefile.am
Log:
Conditionally add swig/python,ruby to SUBDIRS
Modified: branches/3.0/swig/Makefile.am
===================================================================
--- branches/3.0/swig/Makefile.am 2008-01-02 23:23:21 UTC (rev 2102)
+++ branches/3.0/swig/Makefile.am 2008-01-02 23:31:09 UTC (rev 2103)
@@ -1,5 +1,13 @@
-SUBDIRS = python ruby
+if ENABLE_PYTHON
+ MAYBEPYTHON = python
+endif
+if ENABLE_RUBY
+ MAYBERUBY = ruby
+endif
+
+SUBDIRS = $(MAYBEPYTHON) $(MAYBERUBY)
+
EXTRA_DIST = \
geos.i
More information about the geos-commits
mailing list