taler-deployment

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

commit 329834ab4a9fbd2f19b47968fd225ff8f5ac5c00
parent 163da9935d1b197c2a529b27f93921f3f298d315
Author: MS <ms@taler.net>
Date:   Fri, 22 Jul 2022 10:51:14 +0200

fix prefix

Diffstat:
Mbin/taler-gv | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/bin/taler-gv b/bin/taler-gv @@ -135,7 +135,7 @@ def build_libmicrohttpd(r: Repo, p: Path): def build_gnunet(r: Repo, p: Path): update_checkout(r, p) subprocess.run(["./bootstrap"], check=True) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX default_configure( "--enable-logging=verbose", f"--with-microhttpd={pfx}", @@ -147,7 +147,7 @@ def build_gnunet(r: Repo, p: Path): def build_exchange(r: Repo, p: Path): update_checkout(r, p) subprocess.run(["./bootstrap"], check=True) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX default_configure( "CFLAGS=-ggdb -O0", "--enable-logging=verbose", @@ -168,7 +168,7 @@ def build_wallet(r, p): def build_twister(r, p): update_checkout(r, p) subprocess.run(["./bootstrap"], check=True) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX default_configure( "CFLAGS=-ggdb -O0", "--enable-logging=verbose", @@ -182,7 +182,7 @@ def build_twister(r, p): def build_merchant(r, p): update_checkout(r, p) subprocess.run(["./bootstrap"], check=True) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX default_configure( "CFLAGS=-ggdb -O0", "--enable-logging=verbose", @@ -197,7 +197,7 @@ def build_merchant(r, p): def build_sync(r, p): update_checkout(r, p) subprocess.run(["./bootstrap"], check=True) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX default_configure( "CFLAGS=-ggdb -O0", "--enable-logging=verbose", @@ -214,7 +214,7 @@ def build_sync(r, p): def build_demos(r, p): update_checkout(r, p) - pfx = Path.home() / ".local" + pfx = TALER_PREFIX pyconfigure() subprocess.run(["make", "install"], check=True) (p / "taler-buildstamp").touch()