[GRASS-SVN] r53477 - grass/branches/develbranch_6/gui/scripts

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Oct 18 11:55:17 PDT 2012


Author: martinl
Date: 2012-10-18 11:55:16 -0700 (Thu, 18 Oct 2012)
New Revision: 53477

Modified:
   grass/branches/develbranch_6/gui/scripts/g.extension.py
Log:
g.extension.py: don't call tidy_citizen() on MS Windows
                precompiled binary should be compatible with tidy citizen approach


Modified: grass/branches/develbranch_6/gui/scripts/g.extension.py
===================================================================
--- grass/branches/develbranch_6/gui/scripts/g.extension.py	2012-10-18 18:24:34 UTC (rev 53476)
+++ grass/branches/develbranch_6/gui/scripts/g.extension.py	2012-10-18 18:55:16 UTC (rev 53477)
@@ -486,7 +486,7 @@
         grass.message(_("Installation of <%s> successfully finished") % options['extension'])
     
     # cleanup build cruft
-    if not flags['s']:
+    if not flags['s'] and sys.platform != 'win32':
         tidy_citizen()
     
     if not os.environ.has_key('GRASS_ADDON_PATH') or \



More information about the grass-commit mailing list