diff options
author | Yuri Victorovich <yuri@FreeBSD.org> | 2020-09-23 03:36:24 +0000 |
---|---|---|
committer | Yuri Victorovich <yuri@FreeBSD.org> | 2020-09-23 03:36:24 +0000 |
commit | ccf7829e6bbcf56a6e6fb6dc7a98ebb25f240687 (patch) | |
tree | a09716b084a15f7a9bffb005d7004daa0bdbb0ec /graphics/py-open3d-python | |
parent | graphics/py-open3d-python: Broken when the base C++ compiler is missing the h... (diff) |
graphics/py-open3d-python: Fix path in the check of the header <experimental/optiona>
Diffstat (limited to 'graphics/py-open3d-python')
-rw-r--r-- | graphics/py-open3d-python/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/py-open3d-python/Makefile b/graphics/py-open3d-python/Makefile index e929148852ca..0d140c3b4aac 100644 --- a/graphics/py-open3d-python/Makefile +++ b/graphics/py-open3d-python/Makefile @@ -31,7 +31,7 @@ LDFLAGS+= -pthread # https://github.com/IntelVCL/Open3D/issues/510 PLIST_FILES= ${PYTHON_SITELIBDIR}/open3d.so -.if !exists(/usr/include/c++/v1/tr1/experimental/optional) +.if !exists(/usr/include/c++/v1/experimental/optional) BROKEN= Base C++ compiler is missing the header <experimental/optional>, see bug\#249538 .endif |