diff options
author | Helmut Grohne <helmut@subdivi.de> | 2021-05-09 22:55:27 +0200 |
---|---|---|
committer | Helmut Grohne <helmut@subdivi.de> | 2021-05-09 22:55:27 +0200 |
commit | ff71379fe9a4b333f3effc359b30100eb3f4df3c (patch) | |
tree | 808b229ab06e937e342bed71fcbae009c165fe09 /mdbp | |
parent | 29859ef384a596e32d7c6c062eb5e9011ba14dde (diff) | |
download | mdbp-ff71379fe9a4b333f3effc359b30100eb3f4df3c.tar.gz |
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.
Diffstat (limited to 'mdbp')
-rw-r--r-- | mdbp/build_schema.json | 2 |
1 files changed, 1 insertions, 1 deletions
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" |