mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 22:52:11 +02:00
Check if "*" is used to describe supported platforms.
This commit is contained in:
parent
36d7840256
commit
43f8eb837a
1 changed files with 1 additions and 1 deletions
|
@ -114,7 +114,7 @@ public class CommandFactoryDescriptor {
|
|||
|
||||
public boolean supportsPlatform( String platform ) {
|
||||
Set all = getSupportedPlatforms();
|
||||
return all.isEmpty() || all.contains( platform );
|
||||
return all.isEmpty() || all.contains( "*" ) || all.contains( platform ); //$NON-NLS-1$
|
||||
}
|
||||
|
||||
public String[] getSupportedPlatformList() {
|
||||
|
|
Loading…
Add table
Reference in a new issue