diff options
author | joerg <joerg@pkgsrc.org> | 2020-04-30 23:51:15 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2020-04-30 23:51:15 +0000 |
commit | a3b5b8dc91668f2d394c1c00fa121f825048b581 (patch) | |
tree | 7629da8b5798100150056f75f8335fe5e394967e /mk | |
parent | 902afa0807323f895bcaf17ce19f45a1cc5c1c64 (diff) | |
download | pkgsrc-a3b5b8dc91668f2d394c1c00fa121f825048b581.tar.gz |
Terminate case properly
Diffstat (limited to 'mk')
-rw-r--r-- | mk/subst.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/subst.mk b/mk/subst.mk index 0ef31df534c..6d7eb97f91e 100644 --- a/mk/subst.mk +++ b/mk/subst.mk @@ -1,4 +1,4 @@ -# $NetBSD: subst.mk,v 1.86 2020/04/29 22:46:42 rillig Exp $ +# $NetBSD: subst.mk,v 1.87 2020/04/30 23:51:15 joerg Exp $ # # The subst framework replaces text in one or more files in the WRKSRC # directory. Packages can define several ``classes'' of replacements. @@ -226,7 +226,7 @@ ${_SUBST_COOKIE.${class}}: case $$noop_count in \ ('') ;; \ (+) ${FAIL_MSG} "[subst.mk:${class}] The filename pattern \"$$noop_patterns\" has no effect.";; \ - (*) ${FAIL_MSG} "[subst.mk:${class}] The filename patterns \"$$noop_patterns\" have no effect."; \ + (*) ${FAIL_MSG} "[subst.mk:${class}] The filename patterns \"$$noop_patterns\" have no effect.";; \ esac; \ ${TOUCH} ${TOUCH_FLAGS} ${.TARGET}.tmp; \ ${MV} ${.TARGET}.tmp ${.TARGET} |