comparison installer-files/octave.bat @ 4258:a45374f7d9a3

Use 8.3 format for octave path * installer-files/octave-firsttime.vbs: convert OctavePath to shortpath * installer-files/octave.vbs: convert OctavePath to shortpath * installer-files/octave.bat: convert OCT_HOME to 8.3 path * tools/makeinst-script.sh.in: call pkg rbuild and fc_cache with 8.3 pathname
author John D
date Tue, 06 Dec 2016 02:27:58 -0500
parents 44b1a9b2193e
children b73fe78f73c3
comparison
equal deleted inserted replaced
4257:8f71549f53b9 4258:a45374f7d9a3
3 Rem This batch file should reside in Octaves installation subdir! 3 Rem This batch file should reside in Octaves installation subdir!
4 Rem 4 Rem
5 Rem This trick finds the location where the batch file resides. 5 Rem This trick finds the location where the batch file resides.
6 Rem Note: the result ends with a backslash 6 Rem Note: the result ends with a backslash
7 set OCT_HOME=%~dp0 7 set OCT_HOME=%~dp0
8 Rem Coonvert to 8.3 format so dont have to worry about spaces
9 for %%I in ("%OCT_HOME%") do set OCT_HOME=%%~sI
8 10
9 Rem Set up PATH. Make sure the octave bin dir 11 Rem Set up PATH. Make sure the octave bin dir
10 Rem comes first. 12 Rem comes first.
11 13
12 set PATH=%OCT_HOME%qt5\bin;%OCT_HOME%bin;%PATH% 14 set PATH=%OCT_HOME%qt5\bin;%OCT_HOME%bin;%PATH%