[GRASS-SVN] r37574 - grass/branches/develbranch_6/vector

svn_grass at osgeo.org svn_grass at osgeo.org
Thu May 28 14:38:08 EDT 2009


Author: wolf
Date: 2009-05-28 14:38:08 -0400 (Thu, 28 May 2009)
New Revision: 37574

Modified:
   grass/branches/develbranch_6/vector/Makefile
Log:
Fixed makefile to only compile v.label.sa if ft is enabled.


Modified: grass/branches/develbranch_6/vector/Makefile
===================================================================
--- grass/branches/develbranch_6/vector/Makefile	2009-05-28 14:37:05 UTC (rev 37573)
+++ grass/branches/develbranch_6/vector/Makefile	2009-05-28 18:38:08 UTC (rev 37574)
@@ -28,7 +28,6 @@
 	v.kcv \
 	v.kernel \
 	v.label \
-	v.label.sa \
 	v.lrs \
 	v.proj \
 	v.mkgrid \
@@ -90,7 +89,12 @@
     SUBDIRS += $(TCLTKBASED)
 endif
 
+REQUIRESFT = v.label.sa
 
+ifneq ($(strip $(FTLIB)),)
+    SUBDIRS += $(REQUIRESFT)
+endif
+
 OPENDWGBASED = v.in.dwg
 
 #compile if OPENDWG present:



More information about the grass-commit mailing list