Skip to content

Commit 7638be6

Browse files
committed
Bug fixes.
1 parent 22c0895 commit 7638be6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ def main():
102102
package_data = {
103103
"cv2": ["*%s" % sysconfig.get_config_vars().get("SO"), "version.py"]
104104
+ (["*.dll"] if os.name == "nt" else [])
105-
+ (["*.dynlib"] if os.name == "Darwin" else [])
105+
+ (["*.dylib"] if os.name == "Darwin" else [])
106106
+ ["LICENSE.txt", "LICENSE-3RD-PARTY.txt"],
107107
"cv2.data": ["*.xml"],
108108
}
@@ -117,7 +117,7 @@ def main():
117117
)
118118
+
119119
(
120-
[r"lib/libOrbbecSDK\..*\.dylib"]
120+
[r"bin/libOrbbecSDK.*\.dylib"]
121121
if os.name == "Darwin"
122122
else []
123123
)

0 commit comments

Comments
 (0)