Skip to content

Commit a66b1df

Browse files
author
Roberto De Ioris
committed
fixed linux build
1 parent 4704b30 commit a66b1df

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/UnrealEnginePython/UnrealEnginePython.Build.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ public UnrealEnginePython(TargetInfo Target)
250250
}
251251
PublicIncludePaths.Add(includesPath);
252252
PublicAdditionalLibraries.Add(libsPath);
253+
253254
}
254255
else
255256
{
@@ -335,7 +336,7 @@ private string DiscoverLinuxPythonLibsPath()
335336
List<string> paths = new List<string>(linuxKnownLibsPaths);
336337
paths.Insert(0, Path.Combine(ModuleDirectory, "../../Binaries", "Linux", "lib"));
337338
paths.Insert(0, Path.Combine(ModuleDirectory, "../../Binaries", "Linux", "lib64"));
338-
foreach (string path in linuxKnownLibsPaths)
339+
foreach (string path in paths)
339340
{
340341
if (File.Exists(path))
341342
{

0 commit comments

Comments
 (0)