diff options
Diffstat (limited to 'bitbake/lib/bb/checksum.py')
-rw-r--r-- | bitbake/lib/bb/checksum.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/checksum.py b/bitbake/lib/bb/checksum.py index 84289208f4..4e1598fe83 100644 --- a/bitbake/lib/bb/checksum.py +++ b/bitbake/lib/bb/checksum.py | |||
@@ -97,6 +97,8 @@ class FileChecksumCache(MultiProcessCache): | |||
97 | 97 | ||
98 | def checksum_dir(pth): | 98 | def checksum_dir(pth): |
99 | # Handle directories recursively | 99 | # Handle directories recursively |
100 | if pth == "/": | ||
101 | bb.fatal("Refusing to checksum /") | ||
100 | dirchecksums = [] | 102 | dirchecksums = [] |
101 | for root, dirs, files in os.walk(pth): | 103 | for root, dirs, files in os.walk(pth): |
102 | for name in files: | 104 | for name in files: |