summaryrefslogtreecommitdiff
path: root/taler-build
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-04-24 22:09:02 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-04-24 22:09:02 +0200
commitb0346f2407bf14d453dd40281b3cbcee25081cf0 (patch)
treed93860c95769f0f5e4730326cf6900b985dfcb7b /taler-build
parentddd109600c6cd8a1a47555c92c9183c2b2be2a76 (diff)
downloaddeployment-b0346f2407bf14d453dd40281b3cbcee25081cf0.tar.gz
deployment-b0346f2407bf14d453dd40281b3cbcee25081cf0.tar.bz2
deployment-b0346f2407bf14d453dd40281b3cbcee25081cf0.zip
missed some HOME variables ...
Diffstat (limited to 'taler-build')
-rwxr-xr-xtaler-build/update_exchange.sh5
-rwxr-xr-xtaler-build/update_libgnurl.sh5
-rwxr-xr-xtaler-build/update_merchant.sh4
3 files changed, 6 insertions, 8 deletions
diff --git a/taler-build/update_exchange.sh b/taler-build/update_exchange.sh
index 01f03ba..4339dcf 100755
--- a/taler-build/update_exchange.sh
+++ b/taler-build/update_exchange.sh
@@ -1,15 +1,14 @@
#!/bin/bash
base=${TALER_DEPLOYMENT_BASE:-$HOME}
-
-export PATH="$HOME/deployment":$PATH
+export PATH="$base/deployment":$PATH
build_exchange() {
(
set -eu
base=${TALER_DEPLOYMENT_BASE:-$HOME}
- cd $HOME/exchange
+ cd $base/exchange
git clean -fdx
./bootstrap
./configure CFLAGS='-ggdb -O0' \
diff --git a/taler-build/update_libgnurl.sh b/taler-build/update_libgnurl.sh
index cac9ade..0fa8e7c 100755
--- a/taler-build/update_libgnurl.sh
+++ b/taler-build/update_libgnurl.sh
@@ -1,14 +1,14 @@
#!/bin/bash
-export PATH="$HOME/deployment":$PATH
base=${TALER_DEPLOYMENT_BASE:-$HOME}
+export PATH="$base/deployment":$PATH
build_gnurl() {
(
set -eu
base=${TALER_DEPLOYMENT_BASE:-$HOME}
- cd $HOME/gnurl
+ cd $base/gnurl
git clean -fdx
./bootstrap
./configure --enable-ipv6 --with-gnutls --without-libssh2 --without-libmetalink --without-winidn --without-librtmp --without-nghttp2 --without-nss --without-cyassl --without-polarssl --without-ssl --without-winssl --without-darwinssl --disable-sspi --disable-ntlm-wb --disable-ldap --disable-rtsp --disable-dict --disable-telnet --disable-tftp --disable-pop3 --disable-imap --disable-smtp --disable-gopher --disable-file --disable-ftp --disable-smb --prefix=$base/local
@@ -19,5 +19,4 @@ build_gnurl() {
cd $base/gnurl/ && \
git pull && \
- cd $base/deployment && \
build_gnurl
diff --git a/taler-build/update_merchant.sh b/taler-build/update_merchant.sh
index aba2f65..bde9046 100755
--- a/taler-build/update_merchant.sh
+++ b/taler-build/update_merchant.sh
@@ -1,14 +1,14 @@
#!/bin/bash
-export PATH="$HOME/deployment":$PATH
base=${TALER_DEPLOYMENT_BASE:-$HOME}
+export PATH="$base/deployment":$PATH
build_merchant() {
(
set -eu
base=${TALER_DEPLOYMENT_BASE:-$HOME}
- cd $HOME/merchant
+ cd $base/merchant
git clean -fdx
./bootstrap
./configure CFLAGS='-ggdb -O0' \