gst-uninstalled.py: Look for both 'build' and '_build' for builddir
authorNirbheek Chauhan <nirbheek@centricular.com>
Sat, 5 May 2018 15:05:12 +0000 (20:35 +0530)
committerNirbheek Chauhan <nirbheek@centricular.com>
Sat, 5 May 2018 15:05:12 +0000 (20:35 +0530)
gst-uninstalled.py

index a702290..56e8489 100755 (executable)
@@ -17,6 +17,10 @@ from common import get_meson
 
 SCRIPTDIR = os.path.dirname(os.path.realpath(__file__))
 PREFIX_DIR = os.path.join(SCRIPTDIR, 'prefix')
+# Use '_build' as the builddir instead of 'build'
+DEFAULT_BUILDDIR = os.path.join(SCRIPTDIR, 'build')
+if not os.path.exists(DEFAULT_BUILDDIR):
+    DEFAULT_BUILDDIR = os.path.join(SCRIPTDIR, '_build')
 
 
 def prepend_env_var(env, var, value):
@@ -203,7 +207,7 @@ if __name__ == "__main__":
     parser = argparse.ArgumentParser(prog="gstreamer-uninstalled")
 
     parser.add_argument("--builddir",
-                        default=os.path.join(SCRIPTDIR, "build"),
+                        default=DEFAULT_BUILDDIR,
                         help="The meson build directory")
     parser.add_argument("--srcdir",
                         default=SCRIPTDIR,