From: Konstantinos Margaritis Date: Sun, 12 Mar 2023 10:43:46 +0000 (+0000) Subject: use absolute path X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b2981a08c583e6787cfa6d056b60668c5951f83d;p=openpower-isa.git use absolute path --- 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);