]> git.proxmox.com Git - grub2.git/commitdiff
* configure.ac: Make unifont mandatory for powerpc-ieee1275.
authorVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 16 Aug 2013 13:04:38 +0000 (15:04 +0200)
committerVladimir 'phcoder' Serbinenko <phcoder@gmail.com>
Fri, 16 Aug 2013 13:04:38 +0000 (15:04 +0200)
ChangeLog
configure.ac

index 96ea4f6988bee1551e3db63338ff826b2cae8a55..56ad50ccbdfc371f2823ff362054320d2cd9a9cc 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2013-08-16  Vladimir Serbinenko  <phcoder@gmail.com>
+
+       * configure.ac: Make unifont mandatory for powerpc-ieee1275.
+
 2013-08-16  Vladimir Serbinenko  <phcoder@gmail.com>
 
        * configure.ac: Disable unifont and starfield if no freetype was found.
index d038984e1ba63d8720c4d5f069f7b51cef7dc28c..cca12b308ecd51df70ecd5994b0109d428faa03a 100644 (file)
@@ -1010,8 +1010,8 @@ if test x"$grub_build_mkfont_excuse" = x ; then
 else
   enable_build_grub_mkfont=no
 fi
-if test x"$enable_build_grub_mkfont" = xno && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips ); then
-  AC_MSG_ERROR([loongson port needs build-time grub-mkfont])
+if test x"$enable_build_grub_mkfont" = xno && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips || test "x$target_cpu"-"$platform" = xpowerpc-ieee1275 ); then
+  AC_MSG_ERROR([qemu, powerpc-ieee1275 and loongson ports needs build-time grub-mkfont])
 fi
 
 AC_SUBST([build_freetype_cflags])
@@ -1062,8 +1062,8 @@ if test x"$enable_build_grub_mkfont" = xno ; then
   FONT_SOURCE=
 fi
 
-if test "x$FONT_SOURCE" = x && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips ); then
-   AC_MSG_ERROR([qemu and loongson ports need unifont])
+if test "x$FONT_SOURCE" = x && ( test "x$platform" = xqemu || test "x$platform" = xloongson || test "x$platform" = xqemu_mips || test "x$target_cpu"-"$platform" = xpowerpc-ieee1275 ); then
+   AC_MSG_ERROR([qemu, powerpc-ieee1275 and loongson ports need unifont])
 fi
 
 AC_SUBST([FONT_SOURCE])