]> git.proxmox.com Git - grub2.git/commitdiff
* configure.ac: Add Ubuntu path to unifont and report unifont path used.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Thu, 30 May 2013 19:51:34 +0000 (21:51 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Thu, 30 May 2013 19:51:34 +0000 (21:51 +0200)
ChangeLog
configure.ac

index 682936b3d3b8795613d9cca80f508f60e21db29e..b468a0ae47ecae75e2f464e816805e8376b6150a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-30  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * configure.ac: Add Ubuntu path to unifont and report unifont path used.
+
 2013-05-30  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * Makefile.am, conf/Makefile.common: Fix compilation problem with some
index bb4071a90148b01f69a1fcfc22f93e67ab03663e..c151550e47fc5a590ee6ca432f8b79b9e39747f4 100644 (file)
@@ -277,7 +277,7 @@ fi
 FONT_SOURCE=
 
 for ext in pcf pcf.gz bdf bdf.gz ttf ttf.gz; do
-  for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/unifont /usr/share/fonts/uni; do
+  for dir in . /usr/src /usr/share/fonts/X11/misc /usr/share/fonts/unifont /usr/share/fonts/uni /usr/share/fonts/truetype/unifont; do
     if test -f "$dir/unifont.$ext"; then
       FONT_SOURCE="$dir/unifont.$ext"
       break 2
@@ -1288,5 +1288,10 @@ echo With libzfs support: Yes
 else
 echo With libzfs support: No "($libzfs_excuse)"
 fi
+if test "x$FONT_SOURCE" = x ; then
+echo "Without unifont"
+else
+echo "With unifont from $FONT_SOURCE"
+fi
 echo "*******************************************************"
 ]