[gnome-ostree] ostbuild: Pass correct arguments to ostree-build-compile-one



commit 9137eee1deeb011ba4b50891425453fa6ba7c7b3
Author: Colin Walters <walters verbum org>
Date:   Thu Sep 13 14:41:54 2012 -0400

    ostbuild: Pass correct arguments to ostree-build-compile-one
    
    Otherwise we were running 'make install' with parallelism enabled
    which raises all sorts of fun race conditions.  In this case, it looks
    like yelp.m4 is racy.

 gnomeos-3.6.json                      |    1 -
 src/ostbuild/ostree-build-compile-one |    2 +-
 2 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/gnomeos-3.6.json b/gnomeos-3.6.json
index b92c168..747f3f3 100644
--- a/gnomeos-3.6.json
+++ b/gnomeos-3.6.json
@@ -93,7 +93,6 @@
 		 "config-opts": ["--disable-tests"]},
 
    		{"src": "git:git://anongit.freedesktop.org/systemd/systemd",
-		 "tag": "88fae6e0441d4195e089434f07d3e7fd811d6297",
 		 "config-opts": ["--disable-manpages",
 				 "--with-sysvinit-path=",
 				 "--with-sysvrcd-path="]},
diff --git a/src/ostbuild/ostree-build-compile-one b/src/ostbuild/ostree-build-compile-one
index 271444c..02c69a9 100755
--- a/src/ostbuild/ostree-build-compile-one
+++ b/src/ostbuild/ostree-build-compile-one
@@ -333,4 +333,4 @@ def _install_and_unlink(src, dest):
                 shutil.copy2(src, dest)
             os.unlink(src)
 
-main(sys.argv)
+main(sys.argv[1:])



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]