2007-0823 Chris Johns <chisj@rtems.org>

* mingw-path.nsi: Change the forward slashes to back slashes for
        Windows.
This commit is contained in:
Chris Johns
2007-08-22 23:52:43 +00:00
parent a23427e7b7
commit 2e2cbfa933
2 changed files with 8 additions and 3 deletions

View File

@@ -1,3 +1,8 @@
2007-0823 Chris Johns <chisj@rtems.org>
* mingw-path.nsi: Change the forward slashes to back slashes for
Windows.
2007-08-20 Chris Johns <chisj@rtems.org>
* filewrite.nsi, getparameters.nsi, instance-check.nsi,

View File

@@ -26,17 +26,17 @@ FunctionEnd
Function MinGWCheckExes
Exch $R0
Push $R1
StrCpy $R1 "$R0/bin/gcc.exe"
StrCpy $R1 "$R0\bin\gcc.exe"
Push $R1
Call MinGWCheckFile
Pop $R1
StrCmp "ok" 0 Done
StrCpy $R1 "$R0/bin/as.exe"
StrCpy $R1 "$R0\bin\as.exe"
Push $R1
Call MinGWCheckFile
Pop $R1
StrCmp "ok" 0 Done
StrCpy $R1 "$R0/bin/ld.exe"
StrCpy $R1 "$R0\bin\ld.exe"
Push $R1
Call MinGWCheckFile
Pop $R1