diff options
-rw-r--r-- | meta/classes/cml1.bbclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass index eb8e7907f6..926747f2ba 100644 --- a/meta/classes/cml1.bbclass +++ b/meta/classes/cml1.bbclass | |||
@@ -63,8 +63,9 @@ python do_diffconfig() { | |||
63 | 63 | ||
64 | if isdiff: | 64 | if isdiff: |
65 | statement = 'diff --unchanged-line-format= --old-line-format= --new-line-format="%L" ' + configorig + ' ' + config + '>' + fragment | 65 | statement = 'diff --unchanged-line-format= --old-line-format= --new-line-format="%L" ' + configorig + ' ' + config + '>' + fragment |
66 | subprocess.check_call(statement, shell=True) | 66 | subprocess.call(statement, shell=True) |
67 | 67 | # No need to check the exit code as we know it's going to be | |
68 | # non-zero, but that's what we expect. | ||
68 | shutil.copy(configorig, config) | 69 | shutil.copy(configorig, config) |
69 | 70 | ||
70 | bb.plain("Config fragment has been dumped into:\n %s" % fragment) | 71 | bb.plain("Config fragment has been dumped into:\n %s" % fragment) |