gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [taler-deployment] branch master updated: fix CFLAGS


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: fix CFLAGS
Date: Fri, 11 Oct 2019 19:31:53 +0200

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

dold pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 0fc2ef4  fix CFLAGS
0fc2ef4 is described below

commit 0fc2ef443d5dca261cfc85a7c8716c7ea5f13f3d
Author: Florian Dold <address@hidden>
AuthorDate: Fri Oct 11 23:01:45 2019 +0530

    fix CFLAGS
---
 bin/taler-deployment | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index a5594ac..c7f9251 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -136,7 +136,8 @@ def build_exchange(r: Repo, p: Path):
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
     default_configure(
-        "CFLAGS=-ggdb -O0" "--enable-logging=verbose",
+        "CFLAGS=-ggdb -O0",
+        "--enable-logging=verbose",
         f"--with-libgnurl={pfx.as_posix()}",
         f"--with-microhttpd={pfx.as_posix()}",
         f"--with-gnunet={pfx.as_posix()}",
@@ -150,7 +151,8 @@ def build_twister(r, p):
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
     default_configure(
-        "CFLAGS=-ggdb -O0" "--enable-logging=verbose",
+        "CFLAGS=-ggdb -O0",
+        "--enable-logging=verbose",
         f"--with-exchange={pfx.as_posix()}",
         f"--with-gnunet={pfx.as_posix()}",
     )
@@ -163,7 +165,8 @@ def build_merchant(r, p):
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
     default_configure(
-        "CFLAGS=-ggdb -O0" "--enable-logging=verbose",
+        "CFLAGS=-ggdb -O0",
+        "--enable-logging=verbose",
         f"--with-libgnurl={pfx.as_posix()}",
         f"--with-microhttpd={pfx.as_posix()}",
         f"--with-exchange={pfx.as_posix()}",
@@ -323,7 +326,7 @@ def build() -> None:
     for r in stale:
         p = Path.home() / "sources" / r.name
         os.chdir(p.as_posix())
-        r.builder(r, p) # type: ignore
+        r.builder(r, p)  # type: ignore
 
 
 @cli.command()

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

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