diff options
author | Daniel Willmann <daniel@totalueberwachung.de> | 2007-07-30 17:12:21 +0000 |
---|---|---|
committer | Daniel Willmann <daniel@totalueberwachung.de> | 2007-07-30 17:12:21 +0000 |
commit | 05acd69e35b3436cfa279c369239cdbb396f0143 (patch) | |
tree | cdf4846ecc3551af9fe4f9fc7ea258f10d4f74f4 /packages/qemu/files | |
parent | fa6267e027e51aca5bcc436bf849c7a13dadc76b (diff) |
qemu_cvs.bb: Fix Makefile so CFLAGS/LDFLAGS in config.mak aren't overwritten
Diffstat (limited to 'packages/qemu/files')
-rw-r--r-- | packages/qemu/files/makefile.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/packages/qemu/files/makefile.patch b/packages/qemu/files/makefile.patch new file mode 100644 index 0000000000..75b5ac9c71 --- /dev/null +++ b/packages/qemu/files/makefile.patch @@ -0,0 +1,37 @@ +Index: qemu/Makefile +=================================================================== +--- qemu.orig/Makefile 2007-07-30 18:25:50.000000000 +0200 ++++ qemu/Makefile 2007-07-30 18:26:13.000000000 +0200 +@@ -5,14 +5,14 @@ + .PHONY: all clean distclean dvi info install install-doc tar tarbin \ + speed test test2 html dvi info + +-CFLAGS=-Wall -O2 -g -fno-strict-aliasing -I. ++CFLAGS+=-Wall -O2 -g -fno-strict-aliasing -I. + ifdef CONFIG_DARWIN + CFLAGS+= -mdynamic-no-pic + endif + ifeq ($(ARCH),sparc) + CFLAGS+=-mcpu=ultrasparc + endif +-LDFLAGS=-g ++LDFLAGS+=-g + LIBS= + DEFINES+=-D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE + TOOLS=qemu-img$(EXESUF) +Index: qemu/Makefile.target +=================================================================== +--- qemu.orig/Makefile.target 2007-07-30 18:27:17.000000000 +0200 ++++ qemu/Makefile.target 2007-07-30 18:27:23.000000000 +0200 +@@ -17,9 +17,9 @@ + VPATH+=:$(SRC_PATH)/linux-user + DEFINES+=-I$(SRC_PATH)/linux-user -I$(SRC_PATH)/linux-user/$(TARGET_ARCH) + endif +-CFLAGS=-Wall -O2 -g -fno-strict-aliasing ++CFLAGS+=-Wall -O2 -g -fno-strict-aliasing + #CFLAGS+=-Werror +-LDFLAGS=-g ++LDFLAGS+=-g + LIBS= + HELPER_CFLAGS=$(CFLAGS) + DYNGEN=../dyngen$(EXESUF) |