diff options
author | Oz Linden <oz@lindenlab.com> | 2016-03-22 16:35:47 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2016-03-22 16:35:47 -0400 |
commit | 7bbf2ec9f82c9818d02493c7b877e68ca97261fc (patch) | |
tree | 8592444bf347be07c5458a70f8c6a0e266b20aaa /indra/cmake/run_build_test.py | |
parent | ded162be6084e77dd4d4cb13a62d6e2303507dac (diff) |
correct exception thrown for unknown system
Diffstat (limited to 'indra/cmake/run_build_test.py')
-rwxr-xr-x | indra/cmake/run_build_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/run_build_test.py b/indra/cmake/run_build_test.py index a79d09a9ea..fdbb0a75f7 100755 --- a/indra/cmake/run_build_test.py +++ b/indra/cmake/run_build_test.py @@ -78,7 +78,7 @@ def main(command, libpath=[], vars={}): # No idea what the right pathname might be! But only crump if this # feature is requested. if libpath: - raise NotImplemented("run_build_test: unknown platform %s" % sys.platform) + raise RuntimeError("run_build_test: unknown platform %s" % sys.platform) lpvars = [] for var in lpvars: # Split the existing path. Bear in mind that the variable in question |