1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

Projucer: Fixed a Linux Makefile library name bug

This commit is contained in:
tpoole 2017-10-24 10:32:04 +01:00
parent 99c4f716da
commit b936eaeebc

View file

@ -556,8 +556,8 @@ private:
libraries.addTokens (getExternalLibrariesString(), ";", "\"'");
libraries.removeEmptyStrings();
if (libraries.size() != 0)
result.add (replacePreprocessorTokens (config, libraries.joinIntoString (" ")).trim());
for (auto& lib : libraries)
result.add (replacePreprocessorTokens (config, lib).trim());
return result;
}