kicad-developers team mailing list archive
-
kicad-developers team
-
Mailing list archive
-
Message #15126
Re: Build failed in Jenkins: kicad-qa #381
On 12 October 2014 07:57, Miguel Angel Ajo <miguelangel@xxxxxx> wrote:
>
> See <http://ci.kicad-pcb.org/job/kicad-qa/381/changes>
>
> Changes:
>
> [Wayne Stambaugh] CMake housekeeping.
>
> * Remove CMakeParseArguments.cmake to use the version that ships with
CMake.
> * Remove FindPackageHandleStandardArgs.cmake to use the version that ships
> with CMake.
> * Remove FindPythonLibs.cmake to use the version that ships with CMake.
> * Edit FindPythonInterp.cmake to use the stock CMake version of
> FindPackageHandleStandardArgs.cmake since the local version was removed.
>
> <snip>
>
> CMake Error at CMakeModules/FindPythonInterp.cmake:172 (include):
> include could not find load file:
>
> <
http://ci.kicad-pcb.org/job/kicad-qa/ws/CMakeModules/FindPackageHandleStandardArgs.cmake
>
> Call Stack (most recent call first):
> CMakeLists.txt:590 (find_package)
I get the same error. Changing line 172 of FindPythonInterp.cmake to
include the CMake version fixes it for me:
-include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
+include(FindPackageHandleStandardArgs)
Not sure if this change works with other platforms though.
Follow ups
References