summaryrefslogtreecommitdiffstats
path: root/contrib/mingw
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
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 'contrib/mingw')
-rw-r--r--contrib/mingw/ChangeLog5
-rw-r--r--contrib/mingw/mingw-path.nsi6
2 files changed, 8 insertions, 3 deletions
diff --git a/contrib/mingw/ChangeLog b/contrib/mingw/ChangeLog
index d0a6ac27d3..fb667ae231 100644
--- a/contrib/mingw/ChangeLog
+++ b/contrib/mingw/ChangeLog
@@ -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,
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