diff options
author | remanifest <43574909+remanifest@users.noreply.github.com> | 2021-10-05 20:58:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-06 12:58:40 +1100 |
commit | 4782e038d9de07aaead294579176c28b4e8451bc (patch) | |
tree | 29a64bb8865eabfdd1e1534b53a9004d40d68fff | |
parent | 3b8c4979dc17a52cd87f30b4986ca46d0b365860 (diff) |
Added semicolons to rules.mk to allow symlinks from /bin/sh to /bin/zsh to complete the filesize check without error. (#14718)
Co-authored-by: John Beard <jbeard@pipelinerx.com>
-rw-r--r-- | tmk_core/rules.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tmk_core/rules.mk b/tmk_core/rules.mk index fd59fa032a..5a629d1eb0 100644 --- a/tmk_core/rules.mk +++ b/tmk_core/rules.mk @@ -479,8 +479,8 @@ check-size: $(PRINT_WARNING_PLAIN); printf " * $(MSG_FILE_NEAR_LIMIT)"; \ else \ $(PRINT_OK); $(SILENT) || printf " * $(MSG_FILE_JUST_RIGHT)"; \ - fi \ - fi \ + fi ; \ + fi ; \ fi else check-size: |