Skip to content

Commit c19b05a

Browse files
skvarkasenyaev
authored andcommitted
update 3.4.x specific parts
1 parent 5094e4e commit c19b05a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ On slow systems such as Raspberry Pi the full build may take several hours. On a
176176

177177
Opencv-python package (scripts in this repository) is available under MIT license.
178178

179-
OpenCV itself is available under [Apache 2](https://github.com/opencv/opencv/blob/master/LICENSE) license.
179+
OpenCV itself is available under [3-clause BSD License](https://github.com/opencv/opencv/blob/master/LICENSE).
180180

181181
Third party package licenses are at [LICENSE-3RD-PARTY.txt](https://github.com/opencv/opencv-python/blob/master/LICENSE-3RD-PARTY.txt).
182182

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def main():
9999
# Path regexes with forward slashes relative to CMake install dir.
100100
rearrange_cmake_output_data = {
101101
"cv2": (
102-
[r"bin/opencv_videoio_ffmpeg\d{3}%s\.dll" % ("_64" if x64 else "")]
102+
[r"bin/opencv_ffmpeg\d{3,4}%s\.dll" % ("_64" if x64 else "")]
103103
if os.name == "nt"
104104
else []
105105
)
@@ -120,7 +120,7 @@ def main():
120120
r"python/cv2/.*config.*.py"
121121
],
122122
"cv2.data": [ # OPENCV_OTHER_INSTALL_PATH
123-
("etc" if os.name == "nt" else "share/opencv4") + r"/haarcascades/.*\.xml"
123+
("etc" if os.name == "nt" else "share/OpenCV") + r"/haarcascades/.*\.xml"
124124
],
125125
"cv2.gapi": [
126126
"python/cv2" + r"/gapi/.*\.py"

0 commit comments

Comments
 (0)