diff options
author | Edward Hervey <bilboed@bilboed.com> | 2016-03-24 12:44:48 +0100 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2016-03-24 12:44:48 +0100 |
commit | 5b0729084b445c2d276848a8f08f60d8359daeea (patch) | |
tree | 4627ddda5d87568873458da5a9cc96e39752755f | |
parent | 1fcadebd0501b50ea3c221aa60ab1d99f8320f58 (diff) |
manifest2cerbero: Fix gst-devtools handling
-rwxr-xr-x | manifest2cerbero.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifest2cerbero.py b/manifest2cerbero.py index 9ad8256..b66f86f 100755 --- a/manifest2cerbero.py +++ b/manifest2cerbero.py @@ -33,6 +33,8 @@ def main(**kwargs): if aname in toconvert: output["%s-1.0" % aname] = arev output["%s-1.0-static" % aname] = arev + elif aname == "gst-devtools": + output["gst-validate"] = arev else: output[aname] = arev |