Add --program-prefix="" to the configure call of the grub-efi* packages

and remove the paragraph from NEWS about the prefix
This commit is contained in:
fzielcke-guest 2009-06-04 20:13:16 +00:00
parent 7e5e567fba
commit 1bf89f22b2
2 changed files with 2 additions and 7 deletions

5
debian/NEWS vendored
View File

@ -9,9 +9,4 @@ grub2 (1.96+20090604-1) experimental; urgency=low
If you've experienced problems trying to load grub.efi, please try
again using the package that doesn't match your CPU's architecture.
The downside of this is that all binaries are now prefixed with
i386-pe or amd64-pe. For example, grub-install is now called
i386-pe-grub-install in grub-efi-ia32, and amd64-pe-grub-install in
grub-efi-amd64.
-- Felix Zielcke <fzielcke@z-51.de> Thu, 04 Jun 2009 20:23:33 +0200

4
debian/rules vendored
View File

@ -38,10 +38,10 @@ configure/grub-pc configure/grub-ieee1275 configure/grub-coreboot:: $(AUTOGEN_FI
# This name scheme leaves room for things like ia64 or amd32 someday
configure/grub-efi-ia32:: $(AUTOGEN_FILES)
mkdir -p $(subst configure/,build/,$@)
cd $(subst configure/,build/,$@) && $(CONFIGURE) --with-platform=efi --target=i386-pe
cd $(subst configure/,build/,$@) && $(CONFIGURE) --with-platform=efi --target=i386-pe --program-prefix=""
configure/grub-efi-amd64:: $(AUTOGEN_FILES)
mkdir -p $(subst configure/,build/,$@)
cd $(subst configure/,build/,$@) && $(CONFIGURE) --with-platform=efi --target=amd64-pe
cd $(subst configure/,build/,$@) && $(CONFIGURE) --with-platform=efi --target=amd64-pe --program-prefix=""
configure/grub-common:: $(AUTOGEN_FILES)
mkdir -p $(subst configure/,build/,$@)