]> git.ipfire.org Git - thirdparty/grub.git/commitdiff
2009-09-13 Robert Millan <rmh.grub@aybabtu.com>
authorrobertmh <robertmh@localhost>
Sun, 13 Sep 2009 01:30:18 +0000 (01:30 +0000)
committerrobertmh <robertmh@localhost>
Sun, 13 Sep 2009 01:30:18 +0000 (01:30 +0000)
        * configure.ac: Remove --enable-grub-pe2elf.  Only build
        grub-pe2elf when needed by the build system itself.
        * conf/common.rmk: Remove $(enable_grub_pe2elf) check.

ChangeLog
conf/common.rmk
configure.ac

index c421ec6336ddbd2d098b59bf8817cdc61b58b73c..0ab86b8f8c1a541cefdb6955b30b42209da132b9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2009-09-13  Robert Millan  <rmh.grub@aybabtu.com>
+
+       * configure.ac: Remove --enable-grub-pe2elf.  Only build
+       grub-pe2elf when needed by the build system itself.
+       * conf/common.rmk: Remove $(enable_grub_pe2elf) check.
+
 2009-09-12  Robert Millan  <rmh.grub@aybabtu.com>
 
        * configure.ac: Bump version to 1.97~beta3.
index 73cf02caaa50dfbde04478fa1d1dffd1a090f32a..e18dd10520ca241df2064246aa5c39de21a5e822 100644 (file)
@@ -119,21 +119,14 @@ bin_UTILITIES += grub-editenv
 grub_editenv_SOURCES = util/grub-editenv.c lib/envblk.c util/misc.c kern/misc.c kern/err.c
 CLEANFILES += grub-editenv
 
-# for grub-pe2elf
-ifeq ($(enable_grub_pe2elf), yes)
-bin_UTILITIES += grub-pe2elf
+# Needed for genmk.rb to work
+ifeq (0,1)
+bin_UTILITIES += grub-macho2img grub-pe2elf
 endif
 
 grub_pe2elf_SOURCES = util/grub-pe2elf.c util/misc.c
 CLEANFILES += grub-pe2elf
 
-# grub_macho2img assumes a lot about source file.
-# So installing it definitively is useless
-# But adding to bin_UTILITIES is needed for
-# genmk.rb to work
-ifeq (0,1)
-bin_UTILITIES += grub-macho2img
-endif
 grub_macho2img_SOURCES = util/grub-macho2img.c
 CLEANFILES += grub-macho2img
 
index e025b50d6bba3aad7e1d6f15f8f8b0989477cbed..37ecba759239cc34a131c8c1ab7e8899681a55a4 100644 (file)
@@ -557,11 +557,6 @@ enable_grub_fstest=no
 fi
 AC_SUBST([enable_grub_fstest])
 
-AC_ARG_ENABLE([grub-pe2elf],
-             [AS_HELP_STRING([--enable-grub-pe2elf],
-                             [build and install the `grub-pe2elf' conversion utility])])
-AC_SUBST([enable_grub_pe2elf])
-
 AC_ARG_ENABLE([grub-mkfont],
              [AS_HELP_STRING([--enable-grub-mkfont],
                              [build and install the `grub-mkfont' utility (default=guessed)])])
@@ -626,13 +621,6 @@ echo With memory debugging: Yes
 else
 echo With memory debugging: No
 fi
-if [ x"$enable_grub_pe2elf" = xyes ]; then
-echo grub-pe2elf will be built and installed
-elif [ x$TARGET_OBJ2ELF = xgrub-pe2elf ]; then
-echo grub-pe2elf will be built but not installed
-else
-echo grub-pe2elf will not be built
-fi
 if [ x"$efiemu_excuse" = x ]; then
 echo efiemu runtime: Yes
 else