Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opencv: fix dnn_cuda being removed twice causing failure #18916

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions recipes/opencv/4.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,12 @@ def configure(self):
del self.options.contrib_freetype
del self.options.contrib_sfm
if not self.options.dnn:
del self.options.dnn_cuda
self.options.rm_safe("dnn_cuda")
if not self.options.with_cuda:
del self.options.with_cublas
del self.options.with_cudnn
del self.options.with_cufft
del self.options.dnn_cuda
self.options.rm_safe("dnn_cuda")
del self.options.cuda_arch_bin
if bool(self.options.with_jpeg):
if self.options.get_safe("with_jpeg2000") == "jasper":
Expand Down