Skip to content

Commit 3ac97b8

Browse files
committed
Move manifest.py out of cv2_drivers
Fixes #30
1 parent ca68e8c commit 3ac97b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ CURRENT_DIR = $(shell pwd)
88
MAKE_ARGS = USER_C_MODULES="$(CURRENT_DIR)/src/opencv_upy.cmake"
99

1010
# Use the OpenCV driver manifest
11-
MAKE_ARGS += FROZEN_MANIFEST="$(CURRENT_DIR)/cv2_drivers/manifest.py"
11+
MAKE_ARGS += FROZEN_MANIFEST="$(CURRENT_DIR)/manifest.py"
1212

1313
# Build MicroPython with the OpenCV module
1414
all:

cv2_drivers/manifest.py renamed to manifest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
include("$(BOARD_DIR)/manifest.py")
44

55
# Include this directory as one package
6-
package("cv2_drivers", base_path="..")
6+
package("cv2_drivers")
77

88
# Include the SD card module
99
require("sdcard")

0 commit comments

Comments
 (0)