summaryrefslogtreecommitdiff
path: root/poky/meta/lib/oe/buildcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'poky/meta/lib/oe/buildcfg.py')
-rw-r--r--poky/meta/lib/oe/buildcfg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/poky/meta/lib/oe/buildcfg.py b/poky/meta/lib/oe/buildcfg.py
index 27b059b834..4b22f18f36 100644
--- a/poky/meta/lib/oe/buildcfg.py
+++ b/poky/meta/lib/oe/buildcfg.py
@@ -52,7 +52,7 @@ def get_metadata_git_remote_url(path, remote):
def get_metadata_git_describe(path):
try:
- describe, _ = bb.process.run('git describe --tags', cwd=path)
+ describe, _ = bb.process.run('git describe --tags --dirty', cwd=path)
except bb.process.ExecutionError:
return ""
return describe.strip()