diff --git a/cmake/prescan.cmake b/cmake/prescan.cmake index 505eda58da..5f479ba962 100644 --- a/cmake/prescan.cmake +++ b/cmake/prescan.cmake @@ -48,7 +48,6 @@ set(EXCLUDED_CACHE_VARIABLES set(TYPES_DISALLOWED_LIST INTERNAL STATIC - UNINITIALIZED ) # Directory in-which to build the prescan directory set(PRESCAN_DIR "${CMAKE_BINARY_DIR}/prescan") diff --git a/cmake/settings/ini-to-stdio.py b/cmake/settings/ini-to-stdio.py index ae8e2fb077..764fdb1d66 100644 --- a/cmake/settings/ini-to-stdio.py +++ b/cmake/settings/ini-to-stdio.py @@ -29,7 +29,7 @@ def print_setting(setting: str, value: str = "", ending: str = ";"): def print_list_settings(items: List[str]): """Print a list of settings of form SETTING=VALUE""" for item in items: - splits = item.strip().split("=") + splits = item.strip().split("=", 1) if splits[0] != "": print_setting(*splits)