From: Bartosz Golaszewski Date: Wed, 8 Feb 2023 12:34:26 +0000 (+0100) Subject: bindings: python: don't store build system paths in output files X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b5035729222877aa5ed6d3e1facdb4747e7e58fe;p=qemu-gpiodev%2Flibgpiod.git bindings: python: don't store build system paths in output files Using the __FILE__ macro contaminates the build artifacts with global build host file system paths. Don't use it. Signed-off-by: Bartosz Golaszewski --- diff --git a/bindings/python/gpiod/ext/common.c b/bindings/python/gpiod/ext/common.c index 7e53c02..07fca8c 100644 --- a/bindings/python/gpiod/ext/common.c +++ b/bindings/python/gpiod/ext/common.c @@ -15,7 +15,7 @@ void Py_gpiod_dealloc(PyObject *self) PyObject_Del(self); } -PyObject *_Py_gpiod_SetErrFromErrno(const char *filename) +PyObject *Py_gpiod_SetErrFromErrno(void) { PyObject *exc; @@ -61,7 +61,7 @@ PyObject *_Py_gpiod_SetErrFromErrno(const char *filename) break; } - return PyErr_SetFromErrnoWithFilename(exc, filename); + return PyErr_SetFromErrno(exc); } PyObject *Py_gpiod_GetGlobalType(const char *type_name) diff --git a/bindings/python/gpiod/ext/internal.h b/bindings/python/gpiod/ext/internal.h index 210fdf1..7d223c0 100644 --- a/bindings/python/gpiod/ext/internal.h +++ b/bindings/python/gpiod/ext/internal.h @@ -7,9 +7,7 @@ #include #include -PyObject *_Py_gpiod_SetErrFromErrno(const char *filename); -#define Py_gpiod_SetErrFromErrno() _Py_gpiod_SetErrFromErrno(__FILE__) - +PyObject *Py_gpiod_SetErrFromErrno(void); PyObject *Py_gpiod_GetGlobalType(const char *type_name); unsigned int Py_gpiod_PyLongAsUnsignedInt(PyObject *pylong); void Py_gpiod_dealloc(PyObject *self);