aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/interpreter/interpreter.py
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2021-08-30 17:58:16 -0700
committerDylan Baker <dylan@pnwbakers.com>2021-08-30 18:05:02 -0700
commit81f5cee2188dcbd6b92e6b570c2c98961588a17a (patch)
treece2df475307ea27a4e85b3d4aeea4ed4408293af /mesonbuild/interpreter/interpreter.py
parent43f942be34433c0668572fa830bd56c61f612870 (diff)
downloadmeson-81f5cee2188dcbd6b92e6b570c2c98961588a17a.zip
meson-81f5cee2188dcbd6b92e6b570c2c98961588a17a.tar.gz
meson-81f5cee2188dcbd6b92e6b570c2c98961588a17a.tar.bz2
interpreter: rename EnvironmentVariablesObject -> EnvironmentVariablesHolder
This is more consistent with other Holder classes
Diffstat (limited to 'mesonbuild/interpreter/interpreter.py')
-rw-r--r--mesonbuild/interpreter/interpreter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/interpreter/interpreter.py b/mesonbuild/interpreter/interpreter.py
index d640e65..c21b90e 100644
--- a/mesonbuild/interpreter/interpreter.py
+++ b/mesonbuild/interpreter/interpreter.py
@@ -395,7 +395,7 @@ class Interpreter(InterpreterBase, HoldableObject):
build.Data: OBJ.DataHolder,
build.InstallDir: OBJ.InstallDirHolder,
build.IncludeDirs: OBJ.IncludeDirsHolder,
- build.EnvironmentVariables: OBJ.EnvironmentVariablesObject,
+ build.EnvironmentVariables: OBJ.EnvironmentVariablesHolder,
compilers.RunResult: compilerOBJ.TryRunResultHolder,
dependencies.ExternalLibrary: OBJ.ExternalLibraryHolder,
coredata.UserFeatureOption: OBJ.FeatureOptionHolder,