diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-07-19 15:17:03 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-07-23 21:26:14 +0200 |
commit | 9aef73888509d10193615ee5cd9cf439ca44e937 (patch) | |
tree | 7a54a47f6456799f8d7531538b1f1e965d7b4907 /board/xilinx | |
parent | 2e9393f500065f940e5e4ac7fe375e4c0b77b936 (diff) |
unify HOST_CFLAGS and HOSTCFLAGS
The top build system sets up HOSTCFLAGS a bit and exports it, but other
places use HOST_CFLAGS instead. Unify the two as HOSTCFLAGS so that the
values stay in sync.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'board/xilinx')
-rw-r--r-- | board/xilinx/ml300/Makefile | 2 | ||||
-rw-r--r-- | board/xilinx/ppc405-generic/Makefile | 2 | ||||
-rw-r--r-- | board/xilinx/ppc440-generic/Makefile | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/board/xilinx/ml300/Makefile b/board/xilinx/ml300/Makefile index 9215d77bb0d..b8a2d64c4f4 100644 --- a/board/xilinx/ml300/Makefile +++ b/board/xilinx/ml300/Makefile @@ -30,7 +30,7 @@ endif INCS := -I../common -I../xilinx_enet -I../xilinx_iic CFLAGS += $(INCS) -HOST_CFLAGS += $(INCS) +HOSTCFLAGS += $(INCS) LIB = $(obj)lib$(BOARD).a diff --git a/board/xilinx/ppc405-generic/Makefile b/board/xilinx/ppc405-generic/Makefile index b56bb490a22..4e87e4b5cea 100644 --- a/board/xilinx/ppc405-generic/Makefile +++ b/board/xilinx/ppc405-generic/Makefile @@ -31,7 +31,7 @@ endif INCS := CFLAGS += $(INCS) -HOST_CFLAGS += $(INCS) +HOSTCFLAGS += $(INCS) LIB = $(obj)lib$(BOARD).a diff --git a/board/xilinx/ppc440-generic/Makefile b/board/xilinx/ppc440-generic/Makefile index bf0a6ba4f29..11a8f69343c 100644 --- a/board/xilinx/ppc440-generic/Makefile +++ b/board/xilinx/ppc440-generic/Makefile @@ -31,7 +31,7 @@ endif INCS := CFLAGS += $(INCS) -HOST_CFLAGS += $(INCS) +HOSTCFLAGS += $(INCS) LIB = $(obj)lib$(BOARD).a |