From 01faa47136c2f3cebe555df2db221def62f1f563 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 14 Feb 2023 23:27:07 +0100 Subject: [PATCH] btrfs-progs: build: adjust spacing for ioctl-test output The messages of ioctl-test related build is not aligned with other commands: [LD] hash-speedtest [LD] hash-vectest [CC] ioctl-test.o [LD] ioctl-test Signed-off-by: David Sterba --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index f84b1ecc..6ca3aad4 100644 --- a/Makefile +++ b/Makefile @@ -697,7 +697,7 @@ quick-test: quick-test.o $(objects) libbtrfsutil.a $(libs_shared) $(Q)$(CC) -o $@ $^ $(LDFLAGS) $(LIBS) ioctl-test.o: tests/ioctl-test.c ioctl.h kerncompat.h kernel-shared/ctree.h - @echo " [CC] $@" + @echo " [CC] $@" $(Q)$(CC) $(CFLAGS) -c $< -o $@ ioctl-test-32.o: tests/ioctl-test.c ioctl.h kerncompat.h kernel-shared/ctree.h @@ -709,7 +709,7 @@ ioctl-test-64.o: tests/ioctl-test.c ioctl.h kerncompat.h kernel-shared/ctree.h $(Q)$(CC) $(CFLAGS) -m64 -c $< -o $@ ioctl-test: ioctl-test.o - @echo " [LD] $@" + @echo " [LD] $@" $(Q)$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS) @echo " ?[PAHOLE] $@.pahole" -$(Q)pahole $@ > $@.pahole