* Makefile.am (widthspec.h): Fix typo.

* util/grub-gen-widthspec.c: Likewise.
This commit is contained in:
Vladimir 'phcoder' Serbinenko 2013-08-21 20:26:26 +02:00
parent c6b066f2e9
commit e733cf52f4
3 changed files with 9 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
* Makefile.am (widthspec.h): Fix typo.
* util/grub-gen-widthspec.c: Likewise.
2013-08-21 Vladimir Serbinenko <phcoder@gmail.com>
Move ascii.h and widthspec.h generation to a separate build-time-only

View file

@ -114,7 +114,7 @@ ascii.h: $(FONT_SOURCE) build-grub-gen-asciih
./build-grub-gen-asciih $(FONT_SOURCE) $@
CLEANFILES += ascii.h
widthspec.h: $(FONT_SOURCE) build-grub-gen-asciih
widthspec.h: $(FONT_SOURCE) build-grub-gen-widthspec
./build-grub-gen-widthspec $(FONT_SOURCE) $@
CLEANFILES += widthspec.h

View file

@ -120,10 +120,10 @@ main (int argc, char *argv[])
return 1;
}
for (char_code = FT_Get_First_Char (face, &glyph_index);
for (char_code = FT_Get_First_Char (ft_face, &glyph_index);
glyph_index;
char_code = FT_Get_Next_Char (face, char_code, &glyph_index))
add_glyph (face, char_code);
char_code = FT_Get_Next_Char (ft_face, char_code, &glyph_index))
add_glyph (ft_face, char_code);
FT_Done_Face (ft_face);
}