summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBaruch Siach <baruch@tkos.co.il>2018-06-18 07:59:25 +0300
committerTom Rini <trini@konsulko.com>2018-07-10 16:55:59 -0400
commitbf5dd78cd4b26e8e9186311da14793110b9c3278 (patch)
treef9767af2fe951d25999f57b1c281d6c51979bb22 /Makefile
parente745782c25aa00fb74801303413fbcc92dc45b35 (diff)
Makefile: drop unused cpp_cfg macro
Commit e19b0fb4851f (kbuild: generate u-boot.cfg as a byproduct of include/autoconf.mk) removed the use of the cpp_cfg macro in Makefile, but forgot to remove its definition. Cc: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Baruch Siach <baruch@tkos.co.il> Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 0 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 7d5f801eea..3516671320 100644
--- a/Makefile
+++ b/Makefile
@@ -1053,11 +1053,6 @@ ifndef CONFIG_SYS_UBOOT_START
CONFIG_SYS_UBOOT_START := 0
endif
-# Create a file containing the configuration options the image was built with
-quiet_cmd_cpp_cfg = CFG $@
-cmd_cpp_cfg = $(CPP) -Wp,-MD,$(depfile) $(cpp_flags) $(LDPPFLAGS) -ansi \
- -DDO_DEPS_ONLY -D__ASSEMBLY__ -x assembler-with-cpp -P -dM -E -o $@ $<
-
# Boards with more complex image requirments can provide an .its source file
# or a generator script
ifneq ($(CONFIG_SPL_FIT_SOURCE),"")