From: Jerome St-Louis Date: Fri, 1 Aug 2014 03:33:06 +0000 (-0400) Subject: installer: Fixed extra bin/ being added for EcereAudio X-Git-Tag: 0.44.10PR2~34 X-Git-Url: https://ecere.com/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eeccd964bebff86e5a2ffe39ea740b886162e0a0;hp=ede06d24d3561996092a7d90b2423b9cae9f66b7;p=sdk installer: Fixed extra bin/ being added for EcereAudio --- diff --git a/installer/src/installer.ec b/installer/src/installer.ec index 30874ff..226e424 100644 --- a/installer/src/installer.ec +++ b/installer/src/installer.ec @@ -1353,7 +1353,7 @@ void ModifyPath(char * systemPath, char * userPath) if((c != eda && c != eda32 && c != upx) && (!pathOptions[PathOptions::AddMinGWPaths].available || !pathOptions[PathOptions::AddMinGWPaths].selected)) continue; additional[c].GetFullPath(path, false); - if(c != eda && c != eda32 && c != upx) + if(c != eda && c != eda32 && c != upx && c != audio && c != audio32) PathCat(path, "bin"); AddPath(sysPaths, sysCount, paths, &count, oldPath, userPath ? userPath : systemPath, path); }