I tried to go on bugs.openbossa.org but this website seems down. Is there a new address ?
Just in case, the bug is: PySide cmake configuration fails if shiboken is installed in a path containing spaces, for example in C:\Program Files. Adding quotes around path in ShibokenConfig fixes the bug. See attached patch. Regards, Guillaume
>From c74fc7273d066d60158563ec17fe05a5fe5a4722 Mon Sep 17 00:00:00 2001 From: GuiBrother <[email protected]> Date: Sat, 1 Jun 2013 18:07:21 +0200 Subject: [PATCH] Adds quotes around "ShibokenConfig${PYTHON_SUFFIX}.cmake" path in ShibokenConfig to prevent bug if path contains spaces. For example, under MS windows, default "C:\Program Files" path induce error. --- data/ShibokenConfig.cmake.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ShibokenConfig.cmake.in b/data/ShibokenConfig.cmake.in index 7d8bc86..cb6e737 100644 --- a/data/ShibokenConfig.cmake.in +++ b/data/ShibokenConfig.cmake.in @@ -2,4 +2,4 @@ if (NOT PYTHON_SUFFIX) message(STATUS "Using default python: @PYTHON_SUFFIX@") SET(PYTHON_SUFFIX @PYTHON_SUFFIX@) endif() -include(@LIB_INSTALL_DIR@/cmake/Shiboken-@shiboken_VERSION@/ShibokenConfig${PYTHON_SUFFIX}.cmake) +include("@LIB_INSTALL_DIR@/cmake/Shiboken-@shiboken_VERSION@/ShibokenConfig${PYTHON_SUFFIX}.cmake") -- 1.7.10
_______________________________________________ PySide mailing list [email protected] http://lists.qt-project.org/mailman/listinfo/pyside
