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

--HG--
extra : rebase_source : 87f985a43bf2c48ecad143fb2c1973a87966c931
This commit is contained in:
Mike Hommey 2015-11-06 17:31:00 +01:00
Родитель d5d70c968a
Коммит ef64322e27
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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:]