Browse Source

script/init: add extrabin to PATH, do not add extralib (extralib removed from WinGRASS installer somewhere around https://trac.osgeo.org/grass/changeset/57646)

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@62004 15284696-431f-4ddb-bdfa-cd5b030d7da7
Vaclav Petras 10 years ago
parent
commit
b757bf4353
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/python/script/setup.py.sed

+ 1 - 1
lib/python/script/setup.py.sed

@@ -52,7 +52,7 @@ def init(gisbase, dbase='', location='demolocation', mapset='PERMANENT'):
     os.environ['PATH'] += os.pathsep + os.path.join(gisbase, 'bin')
     os.environ['PATH'] += os.pathsep + os.path.join(gisbase, 'scripts')
     if sys.platform.startswith('win'):  # added for winGRASS
-        os.environ['PATH'] += os.pathsep + os.path.join(gisbase, 'extralib')
+        os.environ['PATH'] += os.pathsep + os.path.join(gisbase, 'extrabin')
 
     # define LD_LIBRARY_PATH
     if '@LD_LIBRARY_PATH_VAR@' not in os.environ: