From 454ad87b2bf7f9284554f36ef16f82d0d222cbb9 Mon Sep 17 00:00:00 2001 From: Thomas Farstrike Date: Sun, 26 Oct 2025 08:44:28 +0100 Subject: [PATCH] Fix camera manifest workaround --- scripts/build_mpos.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_mpos.sh b/scripts/build_mpos.sh index f31183f5..35f41349 100755 --- a/scripts/build_mpos.sh +++ b/scripts/build_mpos.sh @@ -47,7 +47,7 @@ fi echo "Check need to add lvgl_micropython manifest to micropython-camera-API's manifest..." camani="$codebasedir"/micropython-camera-API/src/manifest.py rellvglmani=lvgl_micropython/build/manifest.py -if ! grep "$rellvglmani" "$idfile"; then +if ! grep "$rellvglmani" "$camani"; then abslvglmani="$codebasedir"/"$rellvglmani" echo "Adding include(\"$abslvglmani\") to $camani" echo >> "$camani" # needs newline because file doesn't have newline at the end