From 23e574fbcdcfefc334e5b08f2875c5f86059b765 Mon Sep 17 00:00:00 2001 From: Maciej Suminski Date: Fri, 2 Nov 2018 10:40:05 +0100 Subject: [PATCH] Remove a redundant semicolon in Python path configuration command --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 507cefd0d5..338057418e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -739,7 +739,7 @@ if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES ) if( APPLE ) # extra path for macOS, so that 'wx' module is accessible set( _py_site_path - "${_py_site_path};sys.path.insert(0, \"${PYTHON_SITE_PACKAGE_PATH}/wx-3.0-osx_cocoa\");" ) + "${_py_site_path}sys.path.insert(0, \"${PYTHON_SITE_PACKAGE_PATH}/wx-3.0-osx_cocoa\");" ) endif() endif()