diff options
author | Alexandre Truong <alexandre.truong@smile.fr> | 2024-07-31 11:12:21 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-08-09 14:25:10 -0700 |
commit | 0f756226c05b75fed9ce7c113c4a21720e7c599e (patch) | |
tree | 17a40a94eec56475a584f570bf7e1f9bae1332c6 | |
parent | 79064471c267fe3974192e3f06830a9cc2bf686c (diff) | |
download | meta-openembedded-0f756226c05b75fed9ce7c113c4a21720e7c599e.tar.gz |
properties-cpp: include UPSTREAM_CHECK_COMMITS to fix UNKNOWN_BROKEN status
When performing devtool check-upgrade-status, UNKNOWN_BROKEN status appears.
On the upstream source repository, releases are not identified by tags. So,
UPSTREAM_CHECK_COMMITS is set to 1, to find the latest upstream update.
Signed-off-by: Alexandre Truong <alexandre.truong@smile.fr>
Reviewed-by: Yoann Congal <yoann.congal@smile.fr>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/properties-cpp/properties-cpp_git.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta-oe/recipes-extended/properties-cpp/properties-cpp_git.bb b/meta-oe/recipes-extended/properties-cpp/properties-cpp_git.bb index 25951c9de..029ec2337 100644 --- a/meta-oe/recipes-extended/properties-cpp/properties-cpp_git.bb +++ b/meta-oe/recipes-extended/properties-cpp/properties-cpp_git.bb | |||
@@ -11,6 +11,9 @@ PV = "0.0.1+git" | |||
11 | SRCREV = "45863e849b39c4921d6553e6d27e267a96ac7d77" | 11 | SRCREV = "45863e849b39c4921d6553e6d27e267a96ac7d77" |
12 | SRC_URI = "git://github.com/lib-cpp/${BPN}.git;branch=master;protocol=https" | 12 | SRC_URI = "git://github.com/lib-cpp/${BPN}.git;branch=master;protocol=https" |
13 | 13 | ||
14 | # Upstream repo does not tag | ||
15 | UPSTREAM_CHECK_COMMITS = "1" | ||
16 | |||
14 | S = "${WORKDIR}/git" | 17 | S = "${WORKDIR}/git" |
15 | 18 | ||
16 | do_configure:prepend() { | 19 | do_configure:prepend() { |