diff options
-rw-r--r-- | .appveyor.yml | 18 | ||||
-rw-r--r-- | mesonbuild/interpreter.py | 4 |
2 files changed, 2 insertions, 20 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8f215c9..e4d2e60 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -20,24 +20,6 @@ environment: compiler: msvc2015 backend: vs2015 - - arch: x86 - compiler: msvc2017 - backend: ninja - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - - - arch: x86 - compiler: msvc2017 - backend: vs2017 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - - - arch: x64 - compiler: msvc2015 - backend: ninja - - - arch: x64 - compiler: msvc2015 - backend: vs2015 - - arch: x64 compiler: msvc2017 backend: ninja diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 5d3c095..cd5db62 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -1835,8 +1835,8 @@ class Interpreter(InterpreterBase): self.validate_arguments(args, 1, [str]) name = args[0] if '<' in name or '>' in name or '=' in name: - raise InvalidArguments('''Characters <, > and = are forbidden in target names. To specify version -requirements use the version keyword argument instead.''') + raise InvalidArguments('Characters <, > and = are forbidden in dependency names. To specify' + 'version\n requirements use the \'version\' keyword argument instead.') identifier = dependencies.get_dep_identifier(name, kwargs) # Check if we want this as a cross-dep or a native-dep # FIXME: Not all dependencies support such a distinction right now, |