Index: mythcontext.cpp
===================================================================
--- mythcontext.cpp	(revision 6787)
+++ mythcontext.cpp	(working copy)
@@ -1396,10 +1396,12 @@
     if (dir.exists())
         return testdir;
 
-    testdir = "../menutest/" + themename;
+    testdir = d->m_installprefix + "/share/mythtv/themes/G.A.N.T.";
     dir.setPath(testdir);
-    if (dir.exists())
+    if (dir.exists()){
+	cerr<<"Defaulting to G.A.N.T. theme"<<endl;
         return testdir;
+	}
 
 
     // Don't complain about the "default" theme being missing
@@ -1409,10 +1411,10 @@
         dir.setPath(testdir);
         if (dir.exists())
             return testdir;
-    }
-    
-    cerr << "Could not find theme: " << themename << endl;
-    return "";
+	dir.setPath(testdir);
+    	cerr << "Could not find theme: " << themename << endl;
+	exit(1);
+	}
 }
 QString MythContext::GetMenuThemeDir(void)
 {
