diff options
author | Ross Burton <ross@openedhand.com> | 2008-05-01 10:59:24 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2008-05-01 10:59:24 +0000 |
commit | 8bfb9258cf612488d568eb67bc89a9c271b70a70 (patch) | |
tree | 5947c7c9710b45de8290fe282a86dcab75ab4997 /bitbake | |
parent | a74658d4ed04f39208ebb965fdb8d298b150ef82 (diff) | |
download | openembedded-core-8bfb9258cf612488d568eb67bc89a9c271b70a70.tar.gz openembedded-core-8bfb9258cf612488d568eb67bc89a9c271b70a70.tar.bz2 openembedded-core-8bfb9258cf612488d568eb67bc89a9c271b70a70.zip |
Use bb.utils.md5_file isntead of calling md5sum
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4386 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index c697f4744f..c3bea447c1 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py @@ -479,14 +479,7 @@ class Fetch(object): verify_md5sum = staticmethod(verify_md5sum) def write_md5sum(url, ud, d): - if bb.which(data.getVar('PATH', d), 'md5sum'): - try: - md5pipe = os.popen('md5sum ' + ud.localpath) - md5data = (md5pipe.readline().split() or [ "" ])[0] - md5pipe.close() - except OSError: - md5data = "" - + md5data = bb.utils.md5_file(ud.localpath) # verify the md5sum if not Fetch.verify_md5sum(ud, md5data): raise MD5SumError(url) |