are no hashes for comparison and the file already exists in $DISTDIR.
(trunk r12499)
svn path=/main/branches/2.1.6/; revision=12509
for myfile in distfiles_map:
myhashes = dist_hashes.get(myfile)
if not myhashes:
- missing_files.append(myfile)
+ try:
+ st = os.stat(os.path.join(mysettings["DISTDIR"], myfile))
+ except OSError:
+ st = None
+ if st is None or st.st_size == 0:
+ missing_files.append(myfile)
continue
size = myhashes.get("size")