From 5ad73681c2e00599cf298aa54e78e665573dc0cf Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 24 Jan 2020 20:58:23 +0100 Subject: [PATCH] CMake: actually write the NO_CONFIG setting --- CMakeModules/CalamaresAddPlugin.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeModules/CalamaresAddPlugin.cmake b/CMakeModules/CalamaresAddPlugin.cmake index ada95db51..c8f81e684 100644 --- a/CMakeModules/CalamaresAddPlugin.cmake +++ b/CMakeModules/CalamaresAddPlugin.cmake @@ -178,7 +178,7 @@ function( calamares_add_plugin ) if ( PLUGIN_EMERGENCY ) file( APPEND ${_file} "emergency: true\n" ) endif() - if ( NO_CONFIG ) + if ( PLUGIN_NO_CONFIG ) file( APPEND ${_file} "noconfig: true\n" ) endif() endif()