Blame SOURCES/pybind11-2.10.1-hpath.patch

1f644d
diff -uNr pybind11-2.10.1.bak/pybind11/commands.py pybind11-2.10.1/pybind11/commands.py
1f644d
--- pybind11-2.10.1.bak/pybind11/commands.py	2022-11-07 15:25:26.651515082 -0600
1f644d
+++ pybind11-2.10.1/pybind11/commands.py	2022-11-07 15:27:01.574703289 -0600
1f644d
@@ -8,22 +8,13 @@
1f644d
     Return the path to the pybind11 include directory. The historical "user"
1f644d
     argument is unused, and may be removed.
1f644d
     """
1f644d
-    installed_path = os.path.join(DIR, "include")
1f644d
-    source_path = os.path.join(os.path.dirname(DIR), "include")
1f644d
-    return installed_path if os.path.exists(installed_path) else source_path
1f644d
-
1f644d
+    return '/usr/include/pybind11'
1f644d
 
1f644d
 def get_cmake_dir() -> str:
1f644d
     """
1f644d
     Return the path to the pybind11 CMake module directory.
1f644d
     """
1f644d
-    cmake_installed_path = os.path.join(DIR, "share", "cmake", "pybind11")
1f644d
-    if os.path.exists(cmake_installed_path):
1f644d
-        return cmake_installed_path
1f644d
-
1f644d
-    msg = "pybind11 not installed, installation required to access the CMake files"
1f644d
-    raise ImportError(msg)
1f644d
-
1f644d
+    return '/usr/share/cmake/pybind11'
1f644d
 
1f644d
 def get_pkgconfig_dir() -> str:
1f644d
     """