summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2019-11-20 15:35:57 -0600
committerJoshua Watt <JPEWhacker@gmail.com>2019-11-20 15:35:57 -0600
commit603d9f3007078383825d435b8677012830717116 (patch)
tree06c43094149d5fbfc63288eb232d0917f4c12909
parent6da122f1e8d6b02dda0f368610ab72fc3d1720cf (diff)
downloadat-spi2-core-603d9f3007078383825d435b8677012830717116.tar.gz
Fix source reproducibility
The generated enum type files can be included in source packages meant for debugging, and thus need to be reproducible. Replace the absolute include of the header with the basename. This is sufficient because the target include files are always in the include path anyway. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
-rw-r--r--atspi/atspi-enum-types.c.template2
1 files changed, 1 insertions, 1 deletions
diff --git a/atspi/atspi-enum-types.c.template b/atspi/atspi-enum-types.c.template
index 385d0ee9..92e4937b 100644
--- a/atspi/atspi-enum-types.c.template
+++ b/atspi/atspi-enum-types.c.template
@@ -5,7 +5,7 @@
/*** BEGIN file-production ***/
/* enumerations from "@basename@" */
-#include "@filename@"
+#include "@basename@"
/*** END file-production ***/