diff options
Diffstat (limited to 'meta/lib/oe')
-rw-r--r-- | meta/lib/oe/buildcfg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oe/buildcfg.py b/meta/lib/oe/buildcfg.py index 27b059b834..4b22f18f36 100644 --- a/meta/lib/oe/buildcfg.py +++ b/meta/lib/oe/buildcfg.py | |||
@@ -52,7 +52,7 @@ def get_metadata_git_remote_url(path, remote): | |||
52 | 52 | ||
53 | def get_metadata_git_describe(path): | 53 | def get_metadata_git_describe(path): |
54 | try: | 54 | try: |
55 | describe, _ = bb.process.run('git describe --tags', cwd=path) | 55 | describe, _ = bb.process.run('git describe --tags --dirty', cwd=path) |
56 | except bb.process.ExecutionError: | 56 | except bb.process.ExecutionError: |
57 | return "" | 57 | return "" |
58 | return describe.strip() | 58 | return describe.strip() |