diff --git a/conda_build/metadata.py b/conda_build/metadata.py index f00731f2eb..ba59ad7a6f 100644 --- a/conda_build/metadata.py +++ b/conda_build/metadata.py @@ -132,7 +132,7 @@ def get_selectors(config: Config) -> dict[str, bool]: nomkl=bool(int(os.environ.get("FEATURE_NOMKL", False))), ) - subdirs = [subdir for subdir in DEFAULT_SUBDIRS if "-" not in subdir] + subdirs = [subdir for subdir in DEFAULT_SUBDIRS if "-" in subdir] # Add the current platform to the list as well to enable conda-build # to bootstrap new platforms without a new conda release. subdirs.append(plat)