From 7bbf2ec9f82c9818d02493c7b877e68ca97261fc Mon Sep 17 00:00:00 2001
From: Oz Linden <oz@lindenlab.com>
Date: Tue, 22 Mar 2016 16:35:47 -0400
Subject: [PATCH] correct exception thrown for unknown system

---
 indra/cmake/run_build_test.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/cmake/run_build_test.py b/indra/cmake/run_build_test.py
index a79d09a9eab..fdbb0a75f71 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
-- 
GitLab