diff options
author | Owen Taylor <otaylor@redhat.com> | 2001-09-26 22:09:28 +0000 |
---|---|---|
committer | Owen Taylor <otaylor@src.gnome.org> | 2001-09-26 22:09:28 +0000 |
commit | b1fa17533697f93690b04e73fcb84426d9873461 (patch) | |
tree | b8e55f8a21664a7681eb67e5f309510d20d488a1 /gdk-pixbuf | |
parent | 5e52436722b02549cd2df534fe8b8bcae7635f8b (diff) | |
download | gtk+-b1fa17533697f93690b04e73fcb84426d9873461.tar.gz |
Fix a typo in the include guards. (#61254, Skip Montaro)
Wed Sep 26 18:08:19 2001 Owen Taylor <otaylor@redhat.com>
* Makefile.am (s-enum-types-h): Fix a typo in the include
guards. (#61254, Skip Montaro)
Diffstat (limited to 'gdk-pixbuf')
-rw-r--r-- | gdk-pixbuf/ChangeLog | 5 | ||||
-rw-r--r-- | gdk-pixbuf/Makefile.am | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdk-pixbuf/ChangeLog b/gdk-pixbuf/ChangeLog index 492549aeab..e1aac76d5e 100644 --- a/gdk-pixbuf/ChangeLog +++ b/gdk-pixbuf/ChangeLog @@ -1,3 +1,8 @@ +Wed Sep 26 18:08:19 2001 Owen Taylor <otaylor@redhat.com> + + * Makefile.am (s-enum-types-h): Fix a typo in the include + guards. (#61254, Skip Montaro) + 2001-09-21 Matthias Clasen <matthiasc@poet.de> * io-xpm.c (xpm_extract_color): Rewritten to handle diff --git a/gdk-pixbuf/Makefile.am b/gdk-pixbuf/Makefile.am index f4515cd7d2..53ab591d36 100644 --- a/gdk-pixbuf/Makefile.am +++ b/gdk-pixbuf/Makefile.am @@ -251,7 +251,7 @@ $(srcdir)/gdk-pixbuf-enum-types.h: s-enum-types-h s-enum-types-h: @REBUILD@ $(gdk_pixbuf_headers) Makefile ( cd $(srcdir) && glib-mkenums \ - --fhead "#ifndef __GDK_PIXBUF__ENUM_TYPES_H__\n#define __GDK_PIXBUF_ENUM_TYPES_H__\n" \ + --fhead "#ifndef __GDK_PIXBUF_ENUM_TYPES_H__\n#define __GDK_PIXBUF_ENUM_TYPES_H__\n" \ --fprod "/* enumerations from \"@filename@\" */\n" \ --vhead "GType @enum_name@_get_type (void);\n#define GDK_TYPE_@ENUMSHORT@ (@enum_name@_get_type())\n" \ --ftail "#endif /* __GDK_PIXBUF_ENUM_TYPES_H__ */" \ |