summarylogtreecommitdiffstats
path: root/db-location.patch
blob: a94d6a5739b3d0e207e4d7f1f6cb909dd8e3f528 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- MEA.py
+++ MEA.py
@@ -9303,7 +9303,7 @@ def cse_huffman_dictionary_load(cse_variant, cse_major, cse_minor, verbosity) :
 	HUFFMAN_SYMBOLS = {}
 	HUFFMAN_UNKNOWNS = {}
 	mapping_types = {'code' : 0x20, 'data' : 0x60}
-	huffman_dict = os.path.join(mea_dir, 'Huffman.dat')
+	huffman_dict = '/usr/lib/meanalyzer/Huffman.dat'
 	
 	# Message Verbosity: All | Error | None
 	
@@ -10835,7 +10835,7 @@ mea_dir = get_script_dir()
 arg_num = len(sys.argv)
 
 # Set dependencies paths
-mea_db_path = os.path.join(mea_dir, 'MEA.dat')
+mea_db_path = '/usr/lib/meanalyzer/MEA.dat'
 
 # Initialize & Start background Thread for MEA & DB update check
 thread_update = Thread_With_Result(target=mea_upd_check, args=(mea_db_path,), daemon=True)