From ff71379fe9a4b333f3effc359b30100eb3f4df3c Mon Sep 17 00:00:00 2001 From: Helmut Grohne Date: Sun, 9 May 2021 22:55:27 +0200 Subject: schema: allow more characters in DEB_BUILD_OPTIONS In particular, allow DEB_BUILD_OPTIONS=nolang=objc,obj-c++ as this is used by gcc-N. --- mdbp/build_schema.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mdbp') diff --git a/mdbp/build_schema.json b/mdbp/build_schema.json index 34185ce..d971f0d 100644 --- a/mdbp/build_schema.json +++ b/mdbp/build_schema.json @@ -74,7 +74,7 @@ }, "options": { "type": "array", - "items": { "type": "string", "pattern": "^[a-z0-9.=_-]+$" }, + "items": { "type": "string", "pattern": "^[a-z0-9.,+=_-]+$" }, "uniqueItems": true, "default": [], "description": "values of DEB_BUILD_OPTIONS" -- cgit v1.2.3