summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2023-12-20 07:30:04 -0800
committerKaz Kylheku <kaz@kylheku.com>2023-12-20 07:30:04 -0800
commitb09ff7e9e86ee24b05a6876a5d70356fa093d2f2 (patch)
tree509810279ba59bf229a6fa336cd99aaa06e9f7d9 /Makefile
parentd5e22852fe180de1feda1d340ad30a15d6b99043 (diff)
downloadtxr-b09ff7e9e86ee24b05a6876a5d70356fa093d2f2.tar.gz
txr-b09ff7e9e86ee24b05a6876a5d70356fa093d2f2.tar.bz2
txr-b09ff7e9e86ee24b05a6876a5d70356fa093d2f2.zip
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.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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;)