293 | | === Remove OSGeo4W Traces from Package === |
294 | | |
295 | | 1. Open {{{c:\temp\GRASS-Release-Package\msys\msys.bat}}} and remove lines 11-16. |
296 | | |
297 | | 2. At the end of line 88 (also in {{{msys.bat}}}) change: |
298 | | |
299 | | {{{ |
300 | | start %WD%rxvt -backspacekey -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn Courier-12 -tn msys -geometry 80x25 -e /bin/sh --login -c "%*" |
301 | | }}} |
302 | | |
303 | | To: |
304 | | |
305 | | {{{ |
306 | | if "x%*" == "x" start "MSYS 1.0" "%WD%rxvt" -backspacekey -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn Courier-12 -tn msys -geometry 80x25 -e /bin/sh --login -i |
307 | | if NOT "x%*" == "x" start "MSYS 1.0" "%WD%rxvt" -backspacekey -sl 2500 -fg %FGCOLOR% -bg %BGCOLOR% -sr -fn Courier-12 -tn msys -geometry 80x25 -e /bin/sh --login -c "%*" |
308 | | }}} |
309 | | |