summaryrefslogtreecommitdiffstats
path: root/contrib/mingw/mingw-path.nsi
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2007-08-22 23:52:43 +0000
committerChris Johns <chrisj@rtems.org>2007-08-22 23:52:43 +0000
commit2e2cbfa9336be1c9568dde1b56520124cf70cce4 (patch)
tree91b6846e7df9938da479cab3a5b0e0310ffd08a1 /contrib/mingw/mingw-path.nsi
parent2007-08-21 Chris Johns <chrisj@rtems.org> (diff)
downloadrtems-2e2cbfa9336be1c9568dde1b56520124cf70cce4.tar.bz2
2007-0823 Chris Johns <chisj@rtems.org>
* mingw-path.nsi: Change the forward slashes to back slashes for Windows.
Diffstat (limited to '')
-rw-r--r--contrib/mingw/mingw-path.nsi6
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/mingw/mingw-path.nsi b/contrib/mingw/mingw-path.nsi
index 0999d5a7ab..72cde811e8 100644
--- a/contrib/mingw/mingw-path.nsi
+++ b/contrib/mingw/mingw-path.nsi
@@ -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