diff options
author | Evgeni Golov <evgeni@debian.org> | 2012-06-10 11:16:21 +0200 |
---|---|---|
committer | Evgeni Golov <evgeni@debian.org> | 2012-06-10 11:16:21 +0200 |
commit | 5d3f97c65af769b59da9b909f52951646f85cd28 (patch) | |
tree | 604b34bc6e6f1cc1814a7226564f4a7dae7c4a6e /libindicator | |
parent | 1271439e62b7bebbc11b2663cb36f25379fe62b8 (diff) | |
download | libayatana-indicator-5d3f97c65af769b59da9b909f52951646f85cd28.tar.gz libayatana-indicator-5d3f97c65af769b59da9b909f52951646f85cd28.tar.bz2 libayatana-indicator-5d3f97c65af769b59da9b909f52951646f85cd28.zip |
don't include build-time filenames in comments of the enum header files
If we do, the header files may be different on each build.
This is especially harmful when building multiple times for multiple
architectures and expecting the files to be identical.
Diffstat (limited to 'libindicator')
-rw-r--r-- | libindicator/indicator-object-enum-types.c.template | 4 | ||||
-rw-r--r-- | libindicator/indicator-object-enum-types.h.template | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libindicator/indicator-object-enum-types.c.template b/libindicator/indicator-object-enum-types.c.template index dd7d595..e5b3352 100644 --- a/libindicator/indicator-object-enum-types.c.template +++ b/libindicator/indicator-object-enum-types.c.template @@ -3,8 +3,8 @@ /*** END file-header ***/ /*** BEGIN file-production ***/ -/* enumerations from "@filename@" */ -#include "@filename@" +/* enumerations from "@basename@" */ +#include "@basename@" /*** END file-production ***/ /*** BEGIN value-header ***/ diff --git a/libindicator/indicator-object-enum-types.h.template b/libindicator/indicator-object-enum-types.h.template index 07175a0..2ac8ef8 100644 --- a/libindicator/indicator-object-enum-types.h.template +++ b/libindicator/indicator-object-enum-types.h.template @@ -10,7 +10,7 @@ G_BEGIN_DECLS /*** END file-header ***/ /*** BEGIN file-production ***/ -/* enumerations from "@filename@" */ +/* enumerations from "@basename@" */ /*** END file-production ***/ /*** BEGIN file-tail ***/ |