bindings: python: don't store build system paths in output files
authorBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 8 Feb 2023 12:34:26 +0000 (13:34 +0100)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Wed, 8 Feb 2023 13:24:30 +0000 (14:24 +0100)
Using the __FILE__ macro contaminates the build artifacts with global
build host file system paths. Don't use it.

Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
bindings/python/gpiod/ext/common.c
bindings/python/gpiod/ext/internal.h

index 7e53c02b3c0a4546d614d16532a2dbd82041ea90..07fca8c28c97685bd69cab32ca902923303448ee 100644 (file)
@@ -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)
index 210fdf13d7cef71cb6e1ff28768ecb97034d25d1..7d223c014f7c99bb37941dd5ade1a87076495d50 100644 (file)
@@ -7,9 +7,7 @@
 #include <gpiod.h>
 #include <Python.h>
 
-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);