Christopher Degawa

Results 215 comments of Christopher Degawa

Can you try rebuilding? I have not experienced this issue yet

We do have a `vcs_clean` function, although it's not called anywhere, maybe it might be a good idea to use that during `do_vcs`

I think in between ```bash else newHead="$oldHead" fi rm -f custom_updated ``` the `fi` and `rm` might be a good place to try since it's after all the things have...

I think maybe adding *.patches to the vcs_clean exclude would be good

Any other files I should probably add to the list? ```bash vcs_clean() { GIT_TERMINAL_PROMPT=0 git -C "${1:-$PWD}" clean -dffxq -e{recently_{updated,checked},build_successful{32,64}bit,*.patch,*.diff} "$@" } ```

currently testing it out here along with other fixes, https://github.com/1480c1/media-autobuild_suite/tree/vcs_clean

@pat357 can you try with the latest suite https://github.com/m-ab-s/media-autobuild_suite/commit/7e94753bf3ffae441be4929be02105f125f6c765 ?

As an aside, does patch's `-N` not consider new files as already applied?

I'm not exactly sure if we can include all of the plugins due to possible license issues, but probably at least base and good(?)

Also not sure if I can force meson to build shared since even with default libs unset or set to shared, it tries to build static, so I need to...