diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-09-09 06:26:21 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2014-10-02 07:55:02 -0400 |
commit | a4954fd7724c0f55361eb56005856b0da0c99b00 (patch) | |
tree | 784f74cb9e1aa3053ebd14aa269b27e72f6308b0 /firmware | |
parent | ac84eb47cc199d9df7eeb7b32630fc09295a030b (diff) |
kbuild: remove obj-n and lib-n handling
Kconfig never defines CONFIG_* as 'n'.
Now obj-n is only used in firmware/Makefile and it can be
replaced with obj-. No makefile uses lib-n.
Let's rip off obj-n and lib-n.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Acked-by: Peter Foley <pefoley2@pefoley.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'firmware')
-rw-r--r-- | firmware/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/Makefile b/firmware/Makefile index 0862d34cf7d1..e297e1b52636 100644 --- a/firmware/Makefile +++ b/firmware/Makefile | |||
@@ -232,6 +232,6 @@ targets := $(fw-shipped-) $(patsubst $(obj)/%,%, \ | |||
232 | 232 | ||
233 | # Without this, built-in.o won't be created when it's empty, and the | 233 | # Without this, built-in.o won't be created when it's empty, and the |
234 | # final vmlinux link will fail. | 234 | # final vmlinux link will fail. |
235 | obj-n := dummy | 235 | obj- := dummy |
236 | 236 | ||
237 | hostprogs-y := ihex2fw | 237 | hostprogs-y := ihex2fw |