summaryrefslogtreecommitdiffstats
path: root/board/cm-bf548
diff options
context:
space:
mode:
authorPeter Tyser <ptyser@xes-inc.com>2010-04-12 22:28:03 -0500
committerWolfgang Denk <wd@denx.de>2010-04-13 09:13:00 +0200
commit89f39e177e7b0152aa1d3152baa25d986e36cdcf (patch)
tree038889f28a7a52528dbf1d73c5394b98e6773709 /board/cm-bf548
parent03b7004ddafc70d83904d790abaa50843868130e (diff)
downloadblackbird-obmc-uboot-89f39e177e7b0152aa1d3152baa25d986e36cdcf.tar.gz
blackbird-obmc-uboot-89f39e177e7b0152aa1d3152baa25d986e36cdcf.zip
Change directory-specific CFLAGS to use full path
Previously, a specific file or directory could be compiled with custom CFLAGS by adding a Makefile variable such as: CFLAGS_dlmalloc.o = <custom flags for common/dlmalloc.c> or CFLAGS_lib = <custom flags for lib directory> This method breaks down once multiple files or directories share the same path. Eg FLAGS_fileA = <custom flags> would incorrectly result in both dir1/fileA.c and dir2/fileA.c being compiled with <custom flags>. This change allows finer grained control which we need once we move lib_$ARCH to arch/$ARCH/lib/ and lib_generic/ to lib/. Without this change all lib/ directories would share the same custom CFLAGS. Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Diffstat (limited to 'board/cm-bf548')
-rw-r--r--board/cm-bf548/config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/cm-bf548/config.mk b/board/cm-bf548/config.mk
index 0c95b39627..66c7368f72 100644
--- a/board/cm-bf548/config.mk
+++ b/board/cm-bf548/config.mk
@@ -27,7 +27,7 @@
#TEXT_BASE = do-not-use-me
CFLAGS_lib_generic += -O2
-CFLAGS_lzma += -O2
+CFLAGS_lib_generic/lzma += -O2
# Set some default LDR flags based on boot mode.
LDR_FLAGS-BFIN_BOOT_PARA := --dma 6
OpenPOWER on IntegriCloud