comparison installer-files/octave.vbs @ 4153:908a2a0cf6d6

octave.vbs: set GNUTERM env variable (Bug #47994) * installer-files/octave.bat: set GNUTERM=windows * installer-files/octave.vbs: set GNUTERM=windows
author John Donoghue
date Wed, 01 Jun 2016 07:58:16 -0400
parents 586b26b09042
children cc549d1865cb
comparison
equal deleted inserted replaced
4152:2c8182e063cc 4153:908a2a0cf6d6
11 Set wshSystemEnv = wshShell.Environment( "PROCESS" ) 11 Set wshSystemEnv = wshShell.Environment( "PROCESS" )
12 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH") 12 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH")
13 13
14 ' set terminal type 14 ' set terminal type
15 wshSystemEnv("TERM") = "cygwin" 15 wshSystemEnv("TERM") = "cygwin"
16 wshSystemEnv("GNUTERM") = "windows"
16 17
17 ' set Qt plugin directory 18 ' set Qt plugin directory
18 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins" 19 wshSystemEnv("QT_PLUGIN_PATH") = OctavePath & "\plugins"
19 20
20 ' check args to see if told to run gui or command line 21 ' check args to see if told to run gui or command line