[geos-commits] r2102 - trunk/swig

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Jan 2 18:23:21 EST 2008


Author: sgillies
Date: 2008-01-02 18:23:21 -0500 (Wed, 02 Jan 2008)
New Revision: 2102

Modified:
   trunk/swig/Makefile.am
Log:
Conditionally add swig/python,ruby to SUBDIRS

Modified: trunk/swig/Makefile.am
===================================================================
--- trunk/swig/Makefile.am	2007-12-22 00:04:25 UTC (rev 2101)
+++ trunk/swig/Makefile.am	2008-01-02 23:23:21 UTC (rev 2102)
@@ -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