summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMS <ms@taler.net>2022-07-22 10:51:14 +0200
committerMS <ms@taler.net>2022-07-22 10:51:14 +0200
commit329834ab4a9fbd2f19b47968fd225ff8f5ac5c00 (patch)
tree8ce172f4661eec46c7d6499fc022d2089285aaf0 /bin
parent163da9935d1b197c2a529b27f93921f3f298d315 (diff)
downloaddeployment-329834ab4a9fbd2f19b47968fd225ff8f5ac5c00.tar.gz
deployment-329834ab4a9fbd2f19b47968fd225ff8f5ac5c00.tar.bz2
deployment-329834ab4a9fbd2f19b47968fd225ff8f5ac5c00.zip
fix prefix
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-gv12
1 files changed, 6 insertions, 6 deletions
diff --git a/bin/taler-gv b/bin/taler-gv
index bed8089..fecf6a9 100755
--- 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()