summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH. Peter Anvin <hpa@linux.intel.com>2010-06-15 17:15:02 -0700
committerH. Peter Anvin <hpa@linux.intel.com>2010-06-15 17:15:02 -0700
commit07fa0f9de655e41e153aaed17398f0d02768d323 (patch)
treeca93041a4b651eb02086126a9d88baa9bde53d98
parent5ddf3aedfe591ffdf3a5b8bcc1f9523c96925418 (diff)
downloadsyslinux-07fa0f9de655e41e153aaed17398f0d02768d323.tar.gz
extlinux: don't compile with -O0
-O0 is good for debugging, but sucks for production. Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
-rw-r--r--extlinux/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/extlinux/Makefile b/extlinux/Makefile
index c197790d..ab92c2c6 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)