diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2003-06-05 15:58:45 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2003-06-05 15:58:45 +0000 |
commit | 1b49cb13220e72592bfe843983643e772687c7ba (patch) | |
tree | 1bce19c1668eeed01ccc4060f2d0e272207fa3e3 /mdk-stage1 | |
parent | 2720a8fe59864afa97c4c836acdaf6e4e36cf95a (diff) | |
download | drakx-1b49cb13220e72592bfe843983643e772687c7ba.tar drakx-1b49cb13220e72592bfe843983643e772687c7ba.tar.gz drakx-1b49cb13220e72592bfe843983643e772687c7ba.tar.bz2 drakx-1b49cb13220e72592bfe843983643e772687c7ba.tar.xz drakx-1b49cb13220e72592bfe843983643e772687c7ba.zip |
fix build with new gcc
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/Makefile.common | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mdk-stage1/Makefile.common b/mdk-stage1/Makefile.common index cc9e602da..04c070fc2 100644 --- a/mdk-stage1/Makefile.common +++ b/mdk-stage1/Makefile.common @@ -43,9 +43,9 @@ endif #- flags used by all stuff ifeq (ppc, $(ARCH)) -CFLAGS = -Os -pipe -Wall -fomit-frame-pointer +CFLAGS = -Os -pipe -Wall -fomit-frame-pointer -fno-strict-aliasing else -CFLAGS = -Os -pipe -Wall -Werror -W -fomit-frame-pointer +CFLAGS = -Os -pipe -Wall -Werror -W -fomit-frame-pointer -fno-strict-aliasing endif DIETLIBC_INCLUDES = -I$(top_dir)/dietlibc/include -I. -I$(top_dir)/bzlib |