taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit 0fc2ef443d5dca261cfc85a7c8716c7ea5f13f3d
parent 26a9777fc9a0451f97bf12c2b283fde60efcb1e2
Author: Florian Dold <florian.dold@gmail.com>
Date:   Fri, 11 Oct 2019 23:01:45 +0530

fix CFLAGS

Diffstat:
Mbin/taler-deployment | 11+++++++----
1 file changed, 7 insertions(+), 4 deletions(-)

diff --git 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()