diff options
author | Damjan Marion <damarion@cisco.com> | 2020-05-12 12:22:18 +0200 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2020-05-15 23:42:40 +0000 |
commit | a416493d3b9017181054d5ff24d5efdcdb5bf39f (patch) | |
tree | 960b1d9cafdcbb91f218999c14b82d86a42af6c8 /src/vpp-api/python | |
parent | d466c0cafcbc3189b5982f3df8d4cd4d553704ce (diff) |
misc: fix ubuntu 20.04 python deps
Type: fix
Change-Id: I9cdfbffd6333d090f970422bf047aaa90c1e4c65
Signed-off-by: Damjan Marion <damarion@cisco.com>
Diffstat (limited to 'src/vpp-api/python')
-rw-r--r-- | src/vpp-api/python/CMakeLists.txt | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vpp-api/python/CMakeLists.txt b/src/vpp-api/python/CMakeLists.txt index 910df6bfd6b..6450fd92f2d 100644 --- a/src/vpp-api/python/CMakeLists.txt +++ b/src/vpp-api/python/CMakeLists.txt @@ -11,7 +11,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -find_package(Python3 COMPONENTS Interpreter) +if (CMAKE_VERSION VERSION_LESS 3.12) + find_package(PythonInterp 2.7) +else() + find_package(Python3 COMPONENTS Interpreter) +endif() if(PYTHONINTERP_FOUND) install( |