diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2020-05-24 16:48:36 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2020-05-24 16:48:36 +0000 |
commit | 822c6f46bb0c0c2c7bc795a8c502f84dcb4dc058 (patch) | |
tree | 84e7ed958433fbec8b4338e2db8362242b716972 /distrib/syspatch | |
parent | 37ecf386e8311c9e6d5566b2a7914ffe096bcc06 (diff) |
Adjust the sanity check for patch file names to allow a hyphen.
ok aja
Diffstat (limited to 'distrib/syspatch')
-rw-r--r-- | distrib/syspatch/bsd.syspatch.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/syspatch/bsd.syspatch.mk b/distrib/syspatch/bsd.syspatch.mk index 04265a1dab5..15d09667eda 100644 --- a/distrib/syspatch/bsd.syspatch.mk +++ b/distrib/syspatch/bsd.syspatch.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.syspatch.mk,v 1.25 2019/05/12 15:30:18 robert Exp $ +# $OpenBSD: bsd.syspatch.mk,v 1.26 2020/05/24 16:48:35 tb Exp $ # # Copyright (c) 2016-2017 Robert Nagy <robert@openbsd.org> # @@ -76,7 +76,7 @@ depend: cleandir: clean ${_FAKE_COOKIE}: -.if !empty(ERRATA:C/[[:digit:]]{3}_[[:alnum:]_]+//) +.if !empty(ERRATA:C/[[:digit:]]{3}_[[:alnum:]_-]+//) @{ echo "***> invalid errata format: ${ERRATA}"; \ exit 1; }; .endif |