Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0eb6c12

Browse filesBrowse files
authored
Merge pull request opencv#642 from asenyaev/asen/skip_gapi
Skip only gapi if it was not found
2 parents 9ad778e + cd0476f commit 0eb6c12
Copy full SHA for 0eb6c12

File tree

1 file changed

+2
-1
lines changed
Filter options

1 file changed

+2
-1
lines changed

‎setup.py

Copy file name to clipboardExpand all lines: setup.py
+2-1Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,8 @@ def _classify_installed_files_override(
412412
final_install_relpaths.append(new_install_relpath)
413413
del m, fslash_relpath, new_install_relpath
414414
else:
415-
if not found:
415+
# gapi can be missed if ADE was not downloaded (network issue)
416+
if not found and "gapi" not in relpath_re:
416417
raise Exception("Not found: '%s'" % relpath_re)
417418
del r, found
418419

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.