comparison installer-files/octave.vbs @ 5493:dace3d372190

Use msys2 python3 * src/msys2-mpdecimal.mk, src/msys2-python.mk, src/src-msys2-mpdecimal.mk, src/src-msys2-python.mk: new files * dist-files.mk: added ref to new files * index.html: add ref to new packages * installer-files/octave-firsttime.vbs, installer-files/octave.bat, installer-files/octave.vbs: remove python path add * src/python-embedded.mk: add note on not used * src/python-mpmath.mk, src/python-sympy.mk: update dependancy for msys2-python
author John Donoghue <john.donoghue@ieee.org>
date Thu, 23 Jul 2020 12:29:32 -0400
parents 3c10ce089d7c
children cf7adc238c0c
comparison
equal deleted inserted replaced
5492:f04816d4888f 5493:dace3d372190
26 OctavePath = fo.ShortPath 26 OctavePath = fo.ShortPath
27 Set fo = Nothing 27 Set fo = Nothing
28 28
29 ' set up path to ensure octave bin comes first 29 ' set up path to ensure octave bin comes first
30 Set wshSystemEnv = wshShell.Environment( "PROCESS" ) 30 Set wshSystemEnv = wshShell.Environment( "PROCESS" )
31 wshSystemEnv("PATH") = OctavePath & "\python;" & wshSystemEnv("PATH")
32 if OctavePath <> MSysPath Then 31 if OctavePath <> MSysPath Then
33 wshSystemEnv("PATH") = MSysPath & "\bin;" & wshSystemEnv("PATH") 32 wshSystemEnv("PATH") = MSysPath & "\bin;" & wshSystemEnv("PATH")
34 End If 33 End If
35 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH") 34 wshSystemEnv("PATH") = OctavePath & "\bin;" & wshSystemEnv("PATH")
36 35