1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-11 23:54:18 +00:00

Projucer: Fix LV2 manifest helper path in makefile exporter

This commit is contained in:
reuk 2022-09-06 16:12:12 +01:00
parent 65f1a76614
commit ec8cd0e48b
No known key found for this signature in database
GPG key ID: FCB43929F012EE5C

View file

@ -1021,7 +1021,11 @@ private:
targetFiles.add (f);
if (targetType == MakefileTarget::LV2TurtleProgram)
targetFiles.add ({ rebaseFromProjectFolderToBuildTarget (getLV2TurtleDumpProgramSource()).toUnixStyle(), {} });
{
const auto path = getLV2TurtleDumpProgramSource().toUnixStyle();
const auto prefix = build_tools::isAbsolutePath (path) ? "" : "./";
targetFiles.add ({ prefix + path, {} });
}
return targetFiles;
};