Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When extracting the build metadata from the git version, we use the string strip() method to remove the version prefix. This is incorrect, as the strip() method takes a set of characters to be removed, not a literal string. Fix it by splitting the git version string on the '+' character and keeping the suffix. Fixes: 02518e5 ("meson: Rewrite .replace usage") Signed-off-by: Laurent Pinchart <[email protected]> Reviewed-by: Kieran Bingham <[email protected]> Reviewed-by: Michael Riesch <[email protected]> Signed-off-by: Kieran Bingham <[email protected]>
- Loading branch information