diff options
author | Masahiro Yamada | 2015-12-11 12:22:31 +0900 |
---|---|---|
committer | Tom Rini | 2016-01-20 10:19:37 -0500 |
commit | 8b7fb78d485e19aa5cfe9713be18326540fd2efe (patch) | |
tree | 52bd7a704aacf88eb42a94d2da9e4f079df3d7dd /Makefile | |
parent | d67a5775123990c85381289df2d3b9d9c614fcd3 (diff) |
kbuild: drop workaround for old style CONFIG_SYS_TEXT_BASE defines
Now, there is no board defining CONFIG_SYS_TEXT_BASE by its config.mk,
so this workaround is no longer needed.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Acked-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -591,12 +591,6 @@ endif # Prohibit date/time macros, which would make the build non-deterministic KBUILD_CFLAGS += $(call cc-option,-Werror=date-time) -ifneq ($(CONFIG_SYS_TEXT_BASE),) -KBUILD_CPPFLAGS += -DCONFIG_SYS_TEXT_BASE=$(CONFIG_SYS_TEXT_BASE) -endif - -export CONFIG_SYS_TEXT_BASE - include scripts/Makefile.extrawarn # Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments |