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
This commit is contained in:
parent
ee27bc04fc
commit
2fbf967106
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue