diff options
author | monsta <[email protected]> | 2015-07-21 18:10:29 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2015-07-21 18:10:29 +0300 |
commit | 1ae87c6b4cf52c9ada44d268fe09b8b22a843db9 (patch) | |
tree | 0a14d4a1f7d5974075c669fa9ac8ebc471e4a4c8 /src/Makefile.am | |
parent | 37a0b6b09d8befd5b2b5a22093a6c18b5f2fb5a1 (diff) | |
download | engrampa-1ae87c6b4cf52c9ada44d268fe09b8b22a843db9.tar.bz2 engrampa-1ae87c6b4cf52c9ada44d268fe09b8b22a843db9.tar.xz |
fix wrong header guard in generated src/fr-enum-types.h
adapted from
https://git.gnome.org/browse/file-roller/commit/?id=bcc2b505e564161428fa1115d7f7858244a5fed3
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index c1f1a01..494b527 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -171,7 +171,7 @@ fr-marshal.c: fr-marshal.list $(GLIB_GENMARSHAL) fr-enum-types.h: typedefs.h $(GLIB_MKENUMS) $(AM_V_GEN)( $(GLIB_MKENUMS) \ - --fhead "#ifndef FR_ENUM__TYPES_H\n#define FR_ENUM_TYPES_H\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \ + --fhead "#ifndef FR_ENUM_TYPES_H\n#define FR_ENUM_TYPES_H\n\n#include <glib-object.h>\n\nG_BEGIN_DECLS\n" \ --fprod "/* enumerations from \"@filename@\" */\n" \ --vhead "GType @enum_name@_get_type (void);\n#define FR_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ --ftail "G_END_DECLS\n\n#endif /* FR_ENUM_TYPES_H */" \ |