about summary refs log tree commit diff
path: root/src/bootstrap/configure.py
diff options
context:
space:
mode:
authorThom Chiovoloni <thom@shift.click>2023-03-11 14:10:00 -0800
committerThom Chiovoloni <thom@shift.click>2023-03-11 14:10:00 -0800
commitfcb2a3665f691f567dbb359899687d6344c72944 (patch)
tree8ed28adf6284aa344a6f3d9d29d4f3a222e71e6e /src/bootstrap/configure.py
parent8a73f50d875840b8077b8ec080fa41881d7ce40d (diff)
downloadrust-fcb2a3665f691f567dbb359899687d6344c72944.tar.gz
rust-fcb2a3665f691f567dbb359899687d6344c72944.zip
Rename `config.toml.example` to `config.example.toml`
Diffstat (limited to 'src/bootstrap/configure.py')
-rwxr-xr-xsrc/bootstrap/configure.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bootstrap/configure.py b/src/bootstrap/configure.py
index 5278f0c10b3..b326ae402aa 100755
--- a/src/bootstrap/configure.py
+++ b/src/bootstrap/configure.py
@@ -194,7 +194,7 @@ if '--help' in sys.argv or '-h' in sys.argv:
     print('')
     print('This configure script is a thin configuration shim over the true')
     print('configuration system, `config.toml`. You can explore the comments')
-    print('in `config.toml.example` next to this configure script to see')
+    print('in `config.example.toml` next to this configure script to see')
     print('more information about what each option is. Additionally you can')
     print('pass `--set` as an argument to set arbitrary key/value pairs')
     print('in the TOML configuration if desired')
@@ -367,7 +367,7 @@ for key in known_args:
 
 set('build.configure-args', sys.argv[1:])
 
-# "Parse" the `config.toml.example` file into the various sections, and we'll
+# "Parse" the `config.example.toml` file into the various sections, and we'll
 # use this as a template of a `config.toml` to write out which preserves
 # all the various comments and whatnot.
 #
@@ -380,7 +380,7 @@ section_order = [None]
 targets = {}
 top_level_keys = []
 
-for line in open(rust_dir + '/config.toml.example').read().split("\n"):
+for line in open(rust_dir + '/config.example.toml').read().split("\n"):
     if cur_section == None:
         if line.count('=') == 1:
             top_level_key = line.split('=')[0]