[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-unstable] tools: Don't turn CFLAGS into a := (immediate evaluation) variable as
# HG changeset patch # User Keir Fraser <keir.fraser@xxxxxxxxxx> # Date 1231778347 0 # Node ID 5ad9fc3c896f404bb7b1e44ed5833a6ee7ea02a5 # Parent 95d8788bf4be2e8b8d2b984e290f5e19eef1a16c tools: Don't turn CFLAGS into a := (immediate evaluation) variable as this breaks 'CFLAGS += -MMD -MF .$(@F).d' Signed-off-by: Keir Fraser <keir.fraser@xxxxxxxxxx> --- tools/firmware/Rules.mk | 2 +- tools/libaio/src/Makefile | 2 +- tools/tests/blowfish.mk | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff -r 95d8788bf4be -r 5ad9fc3c896f tools/firmware/Rules.mk --- a/tools/firmware/Rules.mk Mon Jan 12 10:23:55 2009 +0000 +++ b/tools/firmware/Rules.mk Mon Jan 12 16:39:07 2009 +0000 @@ -2,7 +2,7 @@ override XEN_TARGET_ARCH = x86_32 override XEN_TARGET_ARCH = x86_32 # User-supplied CFLAGS are not useful here. -CFLAGS := +CFLAGS = include $(XEN_ROOT)/tools/Rules.mk diff -r 95d8788bf4be -r 5ad9fc3c896f tools/libaio/src/Makefile --- a/tools/libaio/src/Makefile Mon Jan 12 10:23:55 2009 +0000 +++ b/tools/libaio/src/Makefile Mon Jan 12 16:39:07 2009 +0000 @@ -6,7 +6,7 @@ libdir=$(prefix)/lib libdir=$(prefix)/lib ARCH := $(shell uname -m | sed -e s/i.86/i386/) -CFLAGS := -nostdlib -nostartfiles -Wall -I. -g -fomit-frame-pointer -O2 -fPIC +CFLAGS = -nostdlib -nostartfiles -Wall -I. -g -fomit-frame-pointer -O2 -fPIC SO_CFLAGS=-shared $(CFLAGS) L_CFLAGS=$(CFLAGS) LINK_FLAGS= diff -r 95d8788bf4be -r 5ad9fc3c896f tools/tests/blowfish.mk --- a/tools/tests/blowfish.mk Mon Jan 12 10:23:55 2009 +0000 +++ b/tools/tests/blowfish.mk Mon Jan 12 16:39:07 2009 +0000 @@ -1,7 +1,7 @@ override XEN_TARGET_ARCH = x86_32 XEN_ROOT = ../.. -CFLAGS := +CFLAGS = include $(XEN_ROOT)/tools/Rules.mk # Disable PIE/SSP if GCC supports them. They can break us. _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |