From 53ee4b9dd3273da8eb723927dff502f409ce9e6c Mon Sep 17 00:00:00 2001 From: Felix Zielcke Date: Fri, 22 Jan 2010 21:23:40 +0100 Subject: [PATCH] Drop `CFLAGS=-O0' workaround on powerpc. Should be fixed correctly now. --- debian/changelog | 5 ++++- debian/rules | 5 ----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1e35ca67f..fa01ba601 100644 --- a/debian/changelog +++ b/debian/changelog @@ -6,7 +6,10 @@ grub2 (1.98~20100120-1) unstable; urgency=low [ Robert Millan ] * config.in: Lower priority of grub2/linux_cmdline_default. - -- Robert Millan Wed, 20 Jan 2010 17:39:56 +0100 + [ Felix Zielcke ] + * Drop `CFLAGS=-O0' workaround on powerpc. Should be fixed correctly now. + + -- Felix Zielcke Fri, 22 Jan 2010 21:23:28 +0100 grub2 (1.98~20100115-1) unstable; urgency=low diff --git a/debian/rules b/debian/rules index 11612d927..daddd355b 100755 --- a/debian/rules +++ b/debian/rules @@ -18,12 +18,7 @@ CFLAGS := -g -Wall ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) CFLAGS += -O0 else -# Avoid `_restgpr_31_x in boot is not defined' FTBFS. - ifeq (powerpc,$(DEB_HOST_ARCH_CPU)) - CFLAGS += -O0 - else CFLAGS += -O2 - endif endif CC := gcc-4.4