From 2e2cbfa9336be1c9568dde1b56520124cf70cce4 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 22 Aug 2007 23:52:43 +0000 Subject: [PATCH] 2007-0823 Chris Johns * mingw-path.nsi: Change the forward slashes to back slashes for Windows. --- contrib/mingw/ChangeLog | 5 +++++ contrib/mingw/mingw-path.nsi | 6 +++--- 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 + + * mingw-path.nsi: Change the forward slashes to back slashes for + Windows. + 2007-08-20 Chris Johns * 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