Bug 1328454 - Add full file path to compilation database. r=glandium

MozReview-Commit-ID: 7H1HvYE9umf
This commit is contained in:
Andi-Bogdan Postelnicu 2017-06-21 17:58:24 +03:00
Родитель 1c008043fa
Коммит 45a6d9565c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -168,7 +168,7 @@ class CompileDBBackend(CommonBackend):
db.append({
'directory': directory,
'command': ' '.join(shell_quote(a) for a in c),
'file': filename,
'file': mozpath.join(directory, filename),
})
import json