Fixup for bug 948275 fixing windows bustage and avoiding a forced clobber. r=gps

This commit is contained in:
Mike Hommey 2013-12-11 16:02:27 +09:00
Родитель e407ed515a
Коммит d520559533
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -135,8 +135,8 @@ class BuildBackend(LoggingMixin):
'backend.%s' % self.__class__.__name__)
self._backend_output_list = set()
if os.path.exists(self._backend_output_list_file):
self._backend_output_list.update(open(self._backend_output_list_file) \
.read().split('\n'))
l = open(self._backend_output_list_file).read().split('\n')
self._backend_output_list.update(mozpath.normsep(p) for p in l)
# Pull in all loaded Python as dependencies so any Python changes that
# could influence our output result in a rescan.