]> git.proxmox.com Git - grub2.git/commitdiff
2009-06-11 Pavel Roskin <proski@gnu.org>
authorproski <proski@localhost>
Thu, 11 Jun 2009 17:31:38 +0000 (17:31 +0000)
committerproski <proski@localhost>
Thu, 11 Jun 2009 17:31:38 +0000 (17:31 +0000)
* configure.ac: Remove host_m32.  Issues with 64-bit utilities
have long been resolved.

ChangeLog
configure.ac

index 354072e565b9bfff6226a53e28599156e29cb14e..ba8e1afb8fb85b1f5ef83e909aaa95e6c8b75467 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-11  Pavel Roskin  <proski@gnu.org>
+
+       * configure.ac: Remove host_m32.  Issues with 64-bit utilities
+       have long been resolved.
+
 2009-06-11  Colin Watson  <cjwatson@ubuntu.com>
 
        * util/grub.d/10_linux.in: Capitalise "Linux".
index 6757d4f1c7817a568696bb5987f307a8c54ab617..ca8c265d193d03f37d4b80e3c28edb76ad00ba3c 100644 (file)
@@ -43,10 +43,6 @@ AC_CANONICAL_TARGET
 # Program name transformations
 AC_ARG_PROGRAM
 
-case "$host_cpu" in
-  powerpc64) host_m32=1 ;;
-esac
-
 case "$target_cpu" in
   i[[3456]]86) target_cpu=i386 ;;
 esac
@@ -172,11 +168,6 @@ if test x$grub_cv_apple_cc == xyes ; then
   CFLAGS="$CFLAGS -DAPPLE_CC=1 -fnested-functions"
   ASFLAGS="$ASFLAGS -DAPPLE_CC=1"
 fi
-if test "x$host_m32" = x1; then
-  # Force 32-bit mode.
-  CFLAGS="$CFLAGS -m32"
-  LDFLAGS="$LDFLAGS -m32"
-fi
 
 # Check LZO when compiling for the i386-pc.
 if test "$target_cpu"-"$platform" = i386-pc; then