From b2981a08c583e6787cfa6d056b60668c5951f83d Mon Sep 17 00:00:00 2001 From: Konstantinos Margaritis Date: Sun, 12 Mar 2023 10:43:46 +0000 Subject: [PATCH] use absolute path --- media/pypowersim_wrapper/pypowersim_wrapper_common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/media/pypowersim_wrapper/pypowersim_wrapper_common.h b/media/pypowersim_wrapper/pypowersim_wrapper_common.h index 9a50d35a..e32c1eb5 100644 --- a/media/pypowersim_wrapper/pypowersim_wrapper_common.h +++ b/media/pypowersim_wrapper/pypowersim_wrapper_common.h @@ -40,7 +40,7 @@ static pypowersim_state_t *pypowersim_prepare(void) { Py_Initialize(); PyObject* sysPath = PySys_GetObject((char*)"path"); - PyObject* curDir = PyUnicode_FromString("../../../src/openpower/decoder/isa/"); + PyObject* curDir = PyUnicode_FromString("/home/markos/src/openpower-isa/src/openpower/decoder/isa/"); PyList_Append(sysPath, curDir); Py_DECREF(curDir); -- 2.30.2