gnunet-svn
[Top][All Lists]
Advanced

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

[taler-deployment] branch master updated: no --enable-coverage for walle


From: gnunet
Subject: [taler-deployment] branch master updated: no --enable-coverage for wallet-core, ever
Date: Sun, 02 May 2021 14:22:35 +0200

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new e2af26a  no --enable-coverage for wallet-core, ever
e2af26a is described below

commit e2af26a752e83cb5700e4a801890fa177ce66e19
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun May 2 14:22:32 2021 +0200

    no --enable-coverage for wallet-core, ever
---
 bin/taler-deployment | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index 4b6805d..196c9da 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -136,6 +136,12 @@ def default_configure(*extra):
         extra_list.append("--enable-coverage")
     subprocess.run(["./configure", f"--prefix={pfx}"] + extra_list, check=True)
 
+def default_configure_nc(*extra):
+    """Variant of default_configure() that does NEVER add --enable-coverage"""
+    pfx = Path.home() / "local"
+    extra_list = list(extra)
+    subprocess.run(["./configure", f"--prefix={pfx}"] + extra_list, check=True)
+
 
 def pyconfigure(*extra):
     """For python programs, --prefix doesn't work."""
@@ -182,7 +188,7 @@ def build_exchange(r: Repo, p: Path):
 def build_wallet(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
-    default_configure()
+    default_configure_nc()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]