Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions build_common/tools/URLDownload.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,17 +59,6 @@ def make_ready(self) :
except Exception, e :
raise SCons.Errors.StopError( '%s [%s]' % (e, self.value) )

def visited(self) :
ninfo = self.get_ninfo()

if self.url_etag :
ninfo.csig = self.url_etag
if self.url_last_modified :
ninfo.timestamp = self.url_last_modified
if self.url_content_length :
ninfo.size = self.url_content_length
SCons.Node.Node.visited(self);

def changed_since_last_build(self, target, prev_ni):
if prev_ni :
if self.url_etag :
Expand Down
2 changes: 1 addition & 1 deletion external/gmock/SConscript.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def dir_offset_from_current(subdir):

src_dir= 'gmock-1.7.0/'
tar_file = 'gmock-1.7.0.zip'
tar_url = 'https://googlemock.googlecode.com/files/gmock-1.7.0.zip'
tar_url = 'https://src.fedoraproject.org/repo/pkgs/gmock/gmock-1.7.0.zip/073b984d8798ea1594f5e44d85b20d66/gmock-1.7.0.zip'

if not os.path.exists(tar_file):
target_zip = gmock_env.URLDownload(tar_file, tar_url)
Expand Down