Skip to content

Commit

Permalink
Merge pull request HaxeFoundation#989 from player-03/getNdkVersion
Browse files Browse the repository at this point in the history
Use absolute path to NDK folders.
  • Loading branch information
hughsando authored Apr 10, 2023
2 parents 34cc184 + fa239f8 commit a50a031
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/hxcpp/Setup.hx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class Setup
for (file in files)
{
file = file.split("\\").join("/");
var version = getNdkVersion(file);
var version = getNdkVersion(ndkDir + "/" + file);
if (inBaseVersion==0 || Std.int(version)==inBaseVersion)
{
if (version>bestVersion)
Expand Down

0 comments on commit a50a031

Please sign in to comment.