From 8645cc2b94b9dc443626a58e842bf2381b7d2917 Mon Sep 17 00:00:00 2001 From: Carles Cufi Date: Fri, 6 Sep 2019 15:56:21 +0200 Subject: [PATCH] doc: cmake: Fix PYTHONPATH on Windows Correctly set the separator as a semicolon on Windows when constructing the PYTHONPATH environment variable so that CMake doesn't intepret it and swallow it. Signed-off-by: Carles Cufi --- doc/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt index b87e152cc4e..166422cc85a 100644 --- a/doc/CMakeLists.txt +++ b/doc/CMakeLists.txt @@ -184,7 +184,7 @@ add_custom_target( ) if(WIN32) - set(SEP ;) + set(SEP $) else() set(SEP :) endif()