summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPeter Jones <pjones@redhat.com>2006-04-28 15:07:26 +0000
committerPeter Jones <pjones@redhat.com>2006-04-28 15:07:26 +0000
commita6d6d501b8fdf50bbe7c8925b964f4b1168edc87 (patch)
tree4bb4fce4d30c36c19750fdbfd26e2d56ca10b40b
parente68a0160e8a4b53e10171fe57687653ddb7cfcf7 (diff)
downloadanaconda-a6d6d501b8fdf50bbe7c8925b964f4b1168edc87.tar.gz
anaconda-a6d6d501b8fdf50bbe7c8925b964f4b1168edc87.tar.xz
anaconda-a6d6d501b8fdf50bbe7c8925b964f4b1168edc87.zip
- Work around #188089 , which we can't reproduce without using an rhn kickstart
server...
-rw-r--r--ChangeLog4
-rw-r--r--loader2/Makefile2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index e5ea11fd4..18406cf4b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-04-28 Peter Jones <pjones@redhat.com>
+
+ * loader2/Makefile: Don't use -Os (#188089).
+
2006-04-21 David Cantrell <dcantrell@redhat.com>
* rescue.py: Added runShell() to handle spawning the tty1 shell for
diff --git a/loader2/Makefile b/loader2/Makefile
index c4b1473f6..1d8bd56a1 100644
--- a/loader2/Makefile
+++ b/loader2/Makefile
@@ -31,7 +31,7 @@ SOURCES = $(subst .o,.c,$(OBJS)) loader.c
HWLIBS = -lkudzu_loader -lpci
DEBUG = -ggdb
-COPTS = $(DEBUG) -Os -Wall -DUSE_LOGDEV -DVERSION='"$(VERSION)"' -Werror
+COPTS = $(DEBUG) -Wall -DUSE_LOGDEV -DVERSION='"$(VERSION)"' -Werror
CFLAGS = $(COPTS) -ffunction-sections -D_GNU_SOURCE=1 -D_FILE_OFFSET_BITS=64 -DHAVE_LIBIO_H
STATIC = -static
REALCC=gcc