From b09ff7e9e86ee24b05a6876a5d70356fa093d2f2 Mon Sep 17 00:00:00 2001 From: Kaz Kylheku Date: Wed, 20 Dec 2023 07:30:04 -0800 Subject: Makefile: operands reversed in abbreviated output. * Makefile (shipped): This rule works correctly but shows, for instance, COPY lex.yy.c.shipped -> lex.yy.c. which is backwards. Let's fix it. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index e32169e3..cb24327f 100644 --- a/Makefile +++ b/Makefile @@ -284,7 +284,7 @@ lex.yy.c: $(top_srcdir)parser.l shipped: $(V)$(foreach NAME,$(SHIPPED), \ if ! cmp -s $(NAME) $(NAME).shipped; then \ - $(call ABBREV3SH,COPY,$(NAME),$(NAME).shipped); \ + $(call ABBREV3SH,COPY,$(NAME).shipped,$(NAME)); \ cp $(NAME) $(NAME).shipped; \ fi;) -- cgit v1.2.3