summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThibault Saunier <tsaunier@igalia.com>2019-05-15 21:14:16 -0400
committerThibault Saunier <tsaunier@igalia.com>2019-05-15 23:23:46 -0400
commit802e18519b7e02179ed69a3819eda779d3be211d (patch)
tree51052f79ebeb6e47466d9b19fb2251b22cfaa545 /scripts
parent54ce8e882bd5b945d0f2c25c1a583b43848bd150 (diff)
downloadgstreamer-802e18519b7e02179ed69a3819eda779d3be211d.tar.gz
Avoid making a dependency between plugins and the build.ninja file
Basically meson detects that we pass file paths to run_command to regenerate the build.ninja file when those change
Diffstat (limited to 'scripts')
-rw-r--r--scripts/generate_plugins_path.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/generate_plugins_path.py b/scripts/generate_plugins_path.py
index 89288244c3..d57c60c2fe 100644
--- a/scripts/generate_plugins_path.py
+++ b/scripts/generate_plugins_path.py
@@ -7,12 +7,12 @@ import json
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--builddir", help="The meson build directory")
- parser.add_argument(dest="plugins", help="The list of plugins", nargs="+")
+ parser.add_argument(dest="plugins", help="The list of plugins")
options = parser.parse_args()
all_paths = set()
- for plugin in options.plugins:
+ for plugin in options.plugins.split(os.pathsep):
all_paths.add(os.path.dirname(plugin))
with open(os.path.join(options.builddir, 'GstPluginsPath.json'), "w") as f: