diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-30 12:40:42 -0400 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-07-31 11:09:49 -0400 |
commit | e2a280d28d32d2cf7eaa2b1cecefd079b24c0245 (patch) | |
tree | def167eb58458f3f766f66777d6924bbabfa56be /lib | |
parent | a721588d9475cbbf9e8b3ae1a69b1dea88d01653 (diff) |
lib/raid6: fix unnecessary rebuild of vpermxor*.c
The following four files are every time rebuilt:
UNROLL lib/raid6/vpermxor1.c
UNROLL lib/raid6/vpermxor2.c
UNROLL lib/raid6/vpermxor4.c
UNROLL lib/raid6/vpermxor8.c
Fix the suffixes in the targets.
Fixes: 72ad21075df8 ("lib/raid6: refactor unroll rules with pattern rules")
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/raid6/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/raid6/Makefile b/lib/raid6/Makefile index 42695bc8d451..0083b5cc646c 100644 --- a/lib/raid6/Makefile +++ b/lib/raid6/Makefile | |||
@@ -66,7 +66,7 @@ CFLAGS_vpermxor1.o += $(altivec_flags) | |||
66 | CFLAGS_vpermxor2.o += $(altivec_flags) | 66 | CFLAGS_vpermxor2.o += $(altivec_flags) |
67 | CFLAGS_vpermxor4.o += $(altivec_flags) | 67 | CFLAGS_vpermxor4.o += $(altivec_flags) |
68 | CFLAGS_vpermxor8.o += $(altivec_flags) | 68 | CFLAGS_vpermxor8.o += $(altivec_flags) |
69 | targets += vpermxor1.o vpermxor2.o vpermxor4.o vpermxor8.o | 69 | targets += vpermxor1.c vpermxor2.c vpermxor4.c vpermxor8.c |
70 | $(obj)/vpermxor%.c: $(src)/vpermxor.uc $(src)/unroll.awk FORCE | 70 | $(obj)/vpermxor%.c: $(src)/vpermxor.uc $(src)/unroll.awk FORCE |
71 | $(call if_changed,unroll) | 71 | $(call if_changed,unroll) |
72 | 72 | ||