diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2014-03-19 13:24:39 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-03-21 12:05:51 +0000 |
commit | 0e849f08d3e365f319ebe136a902cce4df392d3f (patch) | |
tree | 974af52aa6db52b348e45a99216114507d67200c /scripts | |
parent | 21a3ffb2dc305ab236a006e812007e6c8f665a0e (diff) | |
download | poky-0e849f08d3e365f319ebe136a902cce4df392d3f.tar.gz |
scripts/cleanup-workdir: Fix a comment typo
s/Romve/Remove/
(From OE-Core rev: 5f8924a8f76f314e3741dad6ab567452ae117114)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/cleanup-workdir | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/cleanup-workdir b/scripts/cleanup-workdir index 8e6bc4388d..25fef976b6 100755 --- a/scripts/cleanup-workdir +++ b/scripts/cleanup-workdir | |||
@@ -141,7 +141,7 @@ will be deleted. Be CAUTIOUS.""") | |||
141 | get_cur_arch_dirs(workdir, cur_arch_dirs) | 141 | get_cur_arch_dirs(workdir, cur_arch_dirs) |
142 | 142 | ||
143 | for workroot, dirs, files in os.walk(workdir): | 143 | for workroot, dirs, files in os.walk(workdir): |
144 | # For the files, they should NOT exist in WORKDIR. Romve them. | 144 | # For the files, they should NOT exist in WORKDIR. Remove them. |
145 | for f in files: | 145 | for f in files: |
146 | obsolete_dirs.append(os.path.join(workroot, f)) | 146 | obsolete_dirs.append(os.path.join(workroot, f)) |
147 | 147 | ||