Bug 1222591 - "nsMsgUtils.cpp:52:10: fatal error: 'nsProtocolProxyService.h' file not found". r=gps f=aleth

This commit is contained in:
Mike Hommey 2015-11-06 17:31:00 +01:00
parent 88114b1385
commit c0e8d10ea1

View File

@ -874,8 +874,8 @@ class RecursiveMakeBackend(CommonBackend):
if isinstance(path, SourcePath):
if path.full_path.startswith(backend_file.srcdir):
return '$(srcdir)' + path.full_path[len(backend_file.srcdir):]
if path.full_path.startswith(self.environment.topsrcdir):
return '$(topsrcdir)' + path.full_path[len(self.environment.topsrcdir):]
if path.full_path.startswith(backend_file.topsrcdir):
return '$(topsrcdir)' + path.full_path[len(backend_file.topsrcdir):]
elif isinstance(path, ObjDirPath):
if path.full_path.startswith(backend_file.objdir):
return path.full_path[len(backend_file.objdir) + 1:]