2009-11-20 Felix Zielcke <fzielcke@z-51.de>
* configure.ac (UNIFONT_BDF): Rename to ... (FONT_SOURCE): ... this. Update all users.
This commit is contained in:
parent
68b44b1d2d
commit
6c09890c87
3 changed files with 12 additions and 7 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-11-20 Felix Zielcke <fzielcke@z-51.de>
|
||||||
|
|
||||||
|
* configure.ac (UNIFONT_BDF): Rename to ...
|
||||||
|
(FONT_SOURCE): ... this. Update all users.
|
||||||
|
|
||||||
2009-11-20 Felix Zielcke <fzielcke@z-51.de>
|
2009-11-20 Felix Zielcke <fzielcke@z-51.de>
|
||||||
|
|
||||||
* configure.ac: Add `/usr/share/fonts/X11/misc/unifont.pcf.gz'
|
* configure.ac: Add `/usr/share/fonts/X11/misc/unifont.pcf.gz'
|
||||||
|
|
12
Makefile.in
12
Makefile.in
|
@ -108,7 +108,7 @@ AWK = @AWK@
|
||||||
LIBCURSES = @LIBCURSES@
|
LIBCURSES = @LIBCURSES@
|
||||||
LIBUSB = @LIBUSB@
|
LIBUSB = @LIBUSB@
|
||||||
YACC = @YACC@
|
YACC = @YACC@
|
||||||
UNIFONT_BDF = @UNIFONT_BDF@
|
FONT_SOURCE = @FONT_SOURCE@
|
||||||
|
|
||||||
# Options.
|
# Options.
|
||||||
enable_grub_emu = @enable_grub_emu@
|
enable_grub_emu = @enable_grub_emu@
|
||||||
|
@ -207,7 +207,7 @@ docs/grub.info: docs/grub.texi docs/version.texi docs/fdl.texi
|
||||||
$(MKDIR_P) docs
|
$(MKDIR_P) docs
|
||||||
-$(MAKEINFO) -P $(builddir)/docs --no-split --force $< -o $@
|
-$(MAKEINFO) -P $(builddir)/docs --no-split --force $< -o $@
|
||||||
|
|
||||||
ifeq (, $(UNIFONT_BDF))
|
ifeq (, $(FONT_SOURCE))
|
||||||
else
|
else
|
||||||
|
|
||||||
ifeq ($(enable_grub_mkfont),yes)
|
ifeq ($(enable_grub_mkfont),yes)
|
||||||
|
@ -218,11 +218,11 @@ pkgdata_DATA += unicode.pf2 ascii.pf2
|
||||||
UNICODE_ARROWS=0x2190-0x2193
|
UNICODE_ARROWS=0x2190-0x2193
|
||||||
UNICODE_LINES=0x2501-0x251B
|
UNICODE_LINES=0x2501-0x251B
|
||||||
|
|
||||||
unicode.pf2: $(UNIFONT_BDF) grub-mkfont
|
unicode.pf2: $(FONT_SOURCE) grub-mkfont
|
||||||
$(builddir)/grub-mkfont -o $@ $(UNIFONT_BDF)
|
$(builddir)/grub-mkfont -o $@ $(FONT_SOURCE)
|
||||||
|
|
||||||
ascii.pf2: $(UNIFONT_BDF) grub-mkfont
|
ascii.pf2: $(FONT_SOURCE) grub-mkfont
|
||||||
$(builddir)/grub-mkfont -o $@ $(UNIFONT_BDF) -r 0x0-0x7f,$(UNICODE_ARROWS),$(UNICODE_LINES)
|
$(builddir)/grub-mkfont -o $@ $(FONT_SOURCE) -r 0x0-0x7f,$(UNICODE_ARROWS),$(UNICODE_LINES)
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
|
@ -138,7 +138,7 @@ fi
|
||||||
|
|
||||||
for file in /usr/src/unifont.bdf /usr/share/fonts/X11/misc/unifont.pcf.gz ; do
|
for file in /usr/src/unifont.bdf /usr/share/fonts/X11/misc/unifont.pcf.gz ; do
|
||||||
if test -e $file ; then
|
if test -e $file ; then
|
||||||
AC_SUBST([UNIFONT_BDF], [$file])
|
AC_SUBST([FONT_SOURCE], [$file])
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue