Skip to content

Commit e2a280d

Browse files
committed
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: 72ad210 ("lib/raid6: refactor unroll rules with pattern rules") Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
1 parent a721588 commit e2a280d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/raid6/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ CFLAGS_vpermxor1.o += $(altivec_flags)
6666
CFLAGS_vpermxor2.o += $(altivec_flags)
6767
CFLAGS_vpermxor4.o += $(altivec_flags)
6868
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
7070
$(obj)/vpermxor%.c: $(src)/vpermxor.uc $(src)/unroll.awk FORCE
7171
$(call if_changed,unroll)
7272

0 commit comments

Comments
 (0)