diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-12-04 21:28:36 +0000 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-05-20 11:29:17 -0700 |
commit | fb35e6faac2a5efbb8fd0ff6ee5627b144adb184 (patch) | |
tree | 66a742bc32d10d06058a4eefe2d7f0c74c385292 /mesonbuild/environment.py | |
parent | 3ff758f22d8db14171b0cc31e487a24808dd1648 (diff) | |
download | meson-fb35e6faac2a5efbb8fd0ff6ee5627b144adb184.zip meson-fb35e6faac2a5efbb8fd0ff6ee5627b144adb184.tar.gz meson-fb35e6faac2a5efbb8fd0ff6ee5627b144adb184.tar.bz2 |
Remove compiler data from build object
The actual data is in Coredata (which is serialized) and we just held a
reference in Build for (in)convenience.
Diffstat (limited to 'mesonbuild/environment.py')
-rw-r--r-- | mesonbuild/environment.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/environment.py b/mesonbuild/environment.py index e638f31..1ccdf98 100644 --- a/mesonbuild/environment.py +++ b/mesonbuild/environment.py @@ -411,8 +411,8 @@ class Environment: # target machine.) machines = PerThreeMachineDefaultable() - # Similar to coredata.compilers and build.compilers, but lower level in - # that there is no meta data, only names/paths. + # Similar to coredata.compilers, but lower level in that there is no + # meta data, only names/paths. binaries = PerMachineDefaultable() # Misc other properties about each machine. |