diff options
author | Michael Reifenberger <mr@FreeBSD.org> | 2019-03-11 16:08:34 +0000 |
---|---|---|
committer | Michael Reifenberger <mr@FreeBSD.org> | 2019-03-11 16:08:34 +0000 |
commit | 8b717e8366ec2675796348e59f25cecbccf9daa7 (patch) | |
tree | 3141668af9a27d0520f1d7b235c17c00638bc4d7 /cad/kicad-devel | |
parent | 18755c8bde40b171802ffc2a99a5faece4913b88 (diff) |
Notes
Diffstat (limited to 'cad/kicad-devel')
-rw-r--r-- | cad/kicad-devel/files/patch-CMakeLists.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/cad/kicad-devel/files/patch-CMakeLists.txt b/cad/kicad-devel/files/patch-CMakeLists.txt new file mode 100644 index 000000000000..3fbf50421c59 --- /dev/null +++ b/cad/kicad-devel/files/patch-CMakeLists.txt @@ -0,0 +1,22 @@ +--- CMakeLists.txt.orig 2019-03-11 16:59:38.982264000 +0100 ++++ CMakeLists.txt 2019-03-11 17:00:47.354215000 +0100 +@@ -668,8 +668,8 @@ if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES ) + set( PythonLibs_FIND_VERSION 3.3 ) + else() + # force a python version < 3.0 +- set( PythonInterp_FIND_VERSION 2.6 ) +- set( PythonLibs_FIND_VERSION 2.6 ) ++ set( PythonInterp_FIND_VERSION 2.7 ) ++ set( PythonLibs_FIND_VERSION 2.7 ) + endif() + + find_package( PythonInterp ) +@@ -711,7 +711,7 @@ if( KICAD_SCRIPTING OR KICAD_SCRIPTING_MODULES ) + if( KICAD_SCRIPTING_PYTHON3 ) + find_package( PythonLibs 3.3 REQUIRED ) + else() +- find_package( PythonLibs 2.6 REQUIRED ) ++ find_package( PythonLibs 2.7 REQUIRED ) + endif() + + if( KICAD_SCRIPTING_WXPYTHON ) |