From cad1603e9d93e03977e8187eea057876ca54720a Mon Sep 17 00:00:00 2001 From: Jerome St-Louis Date: Sat, 22 Oct 2016 10:53:40 -0400 Subject: [PATCH] installer: Fixed extra bin/bin path - Was being caused by audio/audio32 additional components --- installer/src/installer.ec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer/src/installer.ec b/installer/src/installer.ec index dade4b7..15a8360 100644 --- a/installer/src/installer.ec +++ b/installer/src/installer.ec @@ -1481,7 +1481,7 @@ class InstallThread : Thread char path[MAX_LOCATION]; if(c == extras || !additional[c].selected || !additional[c].available) continue; additional[c].GetFullPath(path, false); - if(c != upx && c != eda && c != vanilla && c != eda32 && c != vanilla32) + if(c != upx && c != eda && c != vanilla && c != eda32 && c != vanilla32 && c != audio && c != audio32) PathCat(path, "bin"); MakeSlashPath(path); if(c == vanilla || c == vanilla32) -- 1.8.3.1