From 6452ae961750e1d58686a25d918b6ccbcef5afb4 Mon Sep 17 00:00:00 2001 From: Reid Kleckner Date: Thu, 27 Jun 2019 20:56:04 +0000 Subject: [PATCH] [compiler-rt] Rename lit.*.cfg.* -> lit.*.cfg.py.* These lit configuration files are really Python source code. Using the .py file extension helps editors and tools use the correct language mode. LLVM and Clang already use this convention for lit configuration, this change simply applies it to all of compiler-rt. Reviewers: vitalybuka, dberris Differential Revision: https://reviews.llvm.org/D63658 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@364591 91177308-0d34-0410-b5e6-96231b3b80d8 --- utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn b/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn index f98622dd154..37ad25ff428 100644 --- a/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn +++ b/utils/gn/secondary/compiler-rt/test/hwasan/BUILD.gn @@ -5,8 +5,8 @@ import("//llvm/utils/gn/build/write_cmake_config.gni") import("//llvm/version.gni") write_cmake_config("lit_site_cfg") { - input = "lit.site.cfg.in" - output = "$target_gen_dir/lit.site.cfg" + input = "lit.site.cfg.py.in" + output = "$target_gen_dir/lit.site.cfg.py" values = [ "LIT_SITE_CFG_IN_HEADER=## Autogenerated from $input, do not edit", -- 2.50.1