summaryrefslogtreecommitdiff
path: root/media-gfx/openvdb/files/openvdb-8.0.1-add-consistency-for-NumPy-find_package-call.patch
blob: 87d1d24755b47b0cff0f1234d124dc8e9ad9d9a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
From: Bernd Waibel <waebbl-gentoo@posteo.net>
Date: Thu, 28 Oct 2021 11:34:16 +0200
Subject: [PATCH] add consistency for NumPy find_package call

Signed-off-by: Bernd Waibel <waebbl-gentoo@posteo.net>

diff --git a/openvdb/openvdb/python/CMakeLists.txt b/openvdb/openvdb/python/CMakeLists.txt
index b473beb..b468d4f 100644
--- a/openvdb/openvdb/python/CMakeLists.txt
+++ b/openvdb/openvdb/python/CMakeLists.txt
@@ -94,7 +94,7 @@ else()
   OPENVDB_CHECK_PYTHON_VERSION(${Python_VERSION} ${Python_INCLUDE_DIRS})
 
   if(USE_NUMPY)
-    find_package(Python QUIET COMPONENTS NumPy)
+    find_package(Python QUIET COMPONENTS ${OPENVDB_PYTHON_REQUIRED_COMPONENTS} NumPy)
     if(NOT TARGET Python::NumPy)
         message(FATAL_ERROR "Could NOT find NumPy (Required is at least version "
           "\"${MINIMUM_NUMPY_VERSION}\")"
-- 
2.33.1