Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion builder/parse_features
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def main():
features_by_type[type] = [feature for feature in features if get_node_type(graph.nodes[feature]) == type]

if len(features_by_type["platform"]) != 1:
print(f"{'warning' if args.allow_frankenstein else 'error'}: number of platforms != 1", file=sys.stderr)
print(f"{'warning' if args.allow_frankenstein else 'error'}: number of platforms is {len(features_by_type["platform"])}, but should be 1", file=sys.stderr)
if not args.allow_frankenstein:
print("hint: use --allow-frankenstein if you truly want to build with an unsupported number of platforms", file=sys.stderr)
sys.exit(1)
Expand Down
Loading