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: pyconfigure


From: gnunet
Subject: [GNUnet-SVN] [taler-deployment] branch master updated: pyconfigure
Date: Fri, 11 Oct 2019 20:12:59 +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 d79fd42  pyconfigure
d79fd42 is described below

commit d79fd42dac4d10bde4a4746f863be2ea1d09a3d5
Author: Florian Dold <address@hidden>
AuthorDate: Fri Oct 11 23:42:47 2019 +0530

    pyconfigure
---
 bin/taler-deployment | 18 +++++++++++++-----
 1 file changed, 13 insertions(+), 5 deletions(-)

diff --git a/bin/taler-deployment b/bin/taler-deployment
index 906b329..2e794db 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -106,6 +106,13 @@ def default_configure(*extra):
         ["./configure", f"--prefix={pfx.as_posix()}"] + list(extra), check=True
     )
 
+def pyconfigure(*extra):
+    """For python programs, --prefix doesn't work."""
+    subprocess.run(
+        ["./configure", "--destination=local"] + list(extra), check=True
+    )
+
+
 
 def build_libmicrohttpd(r: Repo, p: Path):
     update_checkout(r, p)
@@ -181,7 +188,7 @@ def build_bank(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
-    default_configure()
+    pyconfigure()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 
@@ -199,7 +206,7 @@ def build_donations(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
-    default_configure()
+    pyconfigure()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 
@@ -208,7 +215,7 @@ def build_blog(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
-    default_configure()
+    pyconfigure()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 
@@ -217,7 +224,8 @@ def build_survey(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
-    default_configure()
+    default_|
+    pyconfigure()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 
@@ -226,7 +234,7 @@ def build_backoffice(r, p):
     update_checkout(r, p)
     subprocess.run(["./bootstrap"], check=True)
     pfx = Path.home() / "local"
-    default_configure()
+    pyconfigure()
     subprocess.run(["make", "install"], check=True)
     (p / "taler-buildstamp").touch()
 

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



reply via email to

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