diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2023-12-20 07:30:04 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2023-12-20 07:30:04 -0800 |
commit | 89ba54be8c198ab7bb09aaf8999b8f628e667a73 (patch) | |
tree | 509810279ba59bf229a6fa336cd99aaa06e9f7d9 | |
parent | aa17996ac498336cff2cf2f4c2179666a46839cd (diff) | |
download | txr-89ba54be8c198ab7bb09aaf8999b8f628e667a73.tar.gz txr-89ba54be8c198ab7bb09aaf8999b8f628e667a73.tar.bz2 txr-89ba54be8c198ab7bb09aaf8999b8f628e667a73.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.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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;) |