From 07fa0f9de655e41e153aaed17398f0d02768d323 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Tue, 15 Jun 2010 17:15:02 -0700 Subject: [PATCH] extlinux: don't compile with -O0 -O0 is good for debugging, but sucks for production. Signed-off-by: H. Peter Anvin --- extlinux/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extlinux/Makefile b/extlinux/Makefile index c197790..ab92c2c 100644 --- a/extlinux/Makefile +++ b/extlinux/Makefile @@ -17,7 +17,7 @@ topdir = .. include $(topdir)/MCONFIG -OPTFLAGS = -g -O0 +OPTFLAGS = -g -Os INCLUDES = -I. -I.. -I../libinstaller CFLAGS = $(GCCWARN) -Wno-sign-compare -D_FILE_OFFSET_BITS=64 \ $(OPTFLAGS) $(INCLUDES) -- 2.7.4