]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-06-29 Robert Millan <rmh.grub@aybabtu.com>
authorrobertmh <robertmh@localhost>
Mon, 29 Jun 2009 12:19:08 +0000 (12:19 +0000)
committerrobertmh <robertmh@localhost>
Mon, 29 Jun 2009 12:19:08 +0000 (12:19 +0000)
        Fix build on Debian / sparc.

        * configure.ac: Recognize `sparc' target_cpu (as sparc64).

ChangeLog
configure.ac

index 0de7af8106069fef725394f8b765def89da69da3..e95431249078bd386ba68289154b7a5d4e234a08 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-06-29  Robert Millan  <rmh.grub@aybabtu.com>
+
+       Fix build on Debian / sparc.
+
+       * configure.ac: Recognize `sparc' target_cpu (as sparc64).
+
 2009-06-28  Pavel Roskin  <proski@gnu.org>
 
        * kern/i386/qemu/mmap.c (grub_machine_mmap_iterate): Use cast to
index cf1b197a57e1f5d8e425d14da5b9ccc6a99898db..8b12c582ccc4698732644b75b7e9fa700b1174fa 100644 (file)
@@ -44,7 +44,8 @@ AC_CANONICAL_TARGET
 AC_ARG_PROGRAM
 
 case "$target_cpu" in
-  i[[3456]]86) target_cpu=i386 ;;
+  i[[3456]]86) target_cpu=i386 ;;
+  sparc)       target_cpu=sparc64 ;;
 esac
 
 # Specify the platform (such as firmware).