Bug 1677147 - Update build-clang.py for "llvmbuildectomy" r=firefox-build-system-reviewers,mhentges

A recent change upstream [0] removed llvm-build, so we can't test for its files anymore.

[0] 9218ff50f9

Differential Revision: https://phabricator.services.mozilla.com/D97017
This commit is contained in:
David Major 2020-11-14 03:15:54 +00:00
Родитель f47d008163
Коммит 864a71324c
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -636,9 +636,9 @@ if __name__ == "__main__":
args = parser.parse_args()
if not os.path.exists("llvm/LLVMBuild.txt"):
if not os.path.exists("llvm/README.txt"):
raise Exception(
"The script must be run from the root directory of the " "llvm-project tree"
"The script must be run from the root directory of the llvm-project tree"
)
source_dir = os.getcwd()
build_dir = source_dir + "/build"