From 2fbf967106066064bd8babc6353e801c93ec26d4 Mon Sep 17 00:00:00 2001 From: kichik Date: Sat, 21 Apr 2007 09:02:11 +0000 Subject: [PATCH] plug-in runs on windows, path is with backslashes git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@5113 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/script.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/script.cpp b/Source/script.cpp index d906430e..b6d34892 100644 --- a/Source/script.cpp +++ b/Source/script.cpp @@ -5723,7 +5723,7 @@ int CEXEBuild::doCommand(int which_token, LineParser &line) // DLL name on the user machine char tempDLL[NSIS_MAX_STRLEN]; string dllName = get_file_name(dllPath); - wsprintf(tempDLL, "$PLUGINSDIR%c%s", PATH_SEPARATOR_C, dllName.c_str()); + wsprintf(tempDLL, "$PLUGINSDIR\\%s", dllName.c_str()); // Add the DLL to the installer if (data_handle == -1)