Bug 1031129 - Fix ObjdirMismatchException logic to throw properly on m-c. r=gps

This commit is contained in:
Mike Hommey 2014-07-03 07:15:30 +09:00
Родитель 03cdc19fec
Коммит ffb39250a5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -174,7 +174,7 @@ class MozbuildObject(ProcessExecutionMixin):
if topobjdir and config_topobjdir:
mozilla_dir = os.path.join(config_topobjdir, 'mozilla')
if not samepath(topobjdir, config_topobjdir) \
and (os.path.exists(mozilla_dir) and not samepath(topobjdir,
and (not os.path.exists(mozilla_dir) or not samepath(topobjdir,
mozilla_dir)):
raise ObjdirMismatchException(topobjdir, config_topobjdir)