|
44 | 44 |
|
45 | 45 | echo"Check need to add lvgl_micropython manifest to micropython-camera-API's manifest..." |
46 | 46 | camani="$codebasedir"/micropython-camera-API/src/manifest.py |
47 | | -lvglmani="$codebasedir"/lvgl_micropython/build/manifest.py |
48 | | -if! grep"lvgl_micropython/build/manifest.py""$idfile";then |
49 | | -echo"Adding include(\"$lvglmani\") to$camani" |
50 | | -echo"include(\"$lvglmani\") # workaround to prevent micropython-camera-API from overriding the lvgl_micropython manifest...">>"$camani" |
| 47 | +rellvglmani=lvgl_micropython/build/manifest.py |
| 48 | +if! grep"$rellvglmani""$idfile";then |
| 49 | +abslvglmani="$codebasedir"/"$rellvglmani" |
| 50 | +echo"Adding include(\"$abslvglmani\") to$camani" |
| 51 | +echo"include(\"$abslvglmani\") # workaround to prevent micropython-camera-API from overriding the lvgl_micropython manifest...">>"$camani" |
51 | 52 | else |
52 | | -echo"No need to add include(\"$lvglmani\") to$camani" |
| 53 | +echo"No need to add include(\"$abslvglmani\") to$camani" |
53 | 54 | fi |
54 | 55 |
|
55 | 56 | echo"Check need to add asyncio..." |
|