diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-08-02 19:53:44 +0300 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2008-08-03 09:31:07 +0900 |
commit | 596400f0f322c78347e35c197b66faf09a9c1e02 (patch) | |
tree | 8121839ca962b586115cb7986137edfcda26d0b0 /arch/sh/boards/Makefile | |
parent | 49de935c107a53b0eba336efceb1dc3a8be64f87 (diff) | |
download | talos-obmc-linux-596400f0f322c78347e35c197b66faf09a9c1e02.tar.gz talos-obmc-linux-596400f0f322c78347e35c197b66faf09a9c1e02.zip |
sh/boards/Makefile typo fix
The following build error was caused by an obvious typo:
<-- snip -->
...
LD arch/sh/mm/built-in.o
make[2]: *** No rule to make target `arch/sh/boards/board-shmin..o', needed by `arch/sh/boards/built-in.o'. Stop.
<-- snip -->
Reported-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/boards/Makefile')
-rw-r--r-- | arch/sh/boards/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/boards/Makefile b/arch/sh/boards/Makefile index ff9b93c5a91b..463022c7df3c 100644 --- a/arch/sh/boards/Makefile +++ b/arch/sh/boards/Makefile @@ -5,4 +5,4 @@ obj-$(CONFIG_SH_AP325RXA) += board-ap325rxa.o obj-$(CONFIG_SH_MAGIC_PANEL_R2) += board-magicpanelr2.o obj-$(CONFIG_SH_RSK7203) += board-rsk7203.o obj-$(CONFIG_SH_SH7785LCR) += board-sh7785lcr.o -obj-$(CONFIG_SH_SHMIN) += board-shmin..o +obj-$(CONFIG_SH_SHMIN) += board-shmin.o |