Skip to content

Commit

Permalink
Fix build when no SDKs are specified (for running SourceHook tests)
Browse files Browse the repository at this point in the history
  • Loading branch information
psychonic committed Oct 26, 2023
1 parent 7d7946a commit 07a479f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AMBuildScript
Expand Up @@ -87,7 +87,7 @@ class MMSConfig(object):
return True

def detectSDKs(self):
sdk_list = builder.options.sdks.split(',')
sdk_list = [s for s in builder.options.sdks.split(',') if s]
SdkHelpers.sdk_filter = self.shouldIncludeSdk
SdkHelpers.find_sdk_path = self.findSdkPath
SdkHelpers.findSdks(builder, self.all_targets, sdk_list)
Expand Down

0 comments on commit 07a479f

Please sign in to comment.