aboutsummaryrefslogtreecommitdiff
path: root/src/gns
diff options
context:
space:
mode:
authorng0 <ng0@n0.is>2019-11-25 22:43:00 +0000
committerng0 <ng0@n0.is>2019-11-25 22:43:00 +0000
commit3ee28382b24f77f23eac03f594b424c611a7bda8 (patch)
treec5e47a19067f84718a7dd2102b02273690961b6f /src/gns
parentf48c8bffc255e7b1c2ef1d1a07ee436ebb8de054 (diff)
downloadgnunet-3ee28382b24f77f23eac03f594b424c611a7bda8.tar.gz
gnunet-3ee28382b24f77f23eac03f594b424c611a7bda8.zip
fix path in g-g-p-s-c
Diffstat (limited to 'src/gns')
-rw-r--r--src/gns/gnunet-gns-proxy-setup-ca.in33
1 files changed, 29 insertions, 4 deletions
diff --git a/src/gns/gnunet-gns-proxy-setup-ca.in b/src/gns/gnunet-gns-proxy-setup-ca.in
index e3f3f4852..7a79c7994 100644
--- a/src/gns/gnunet-gns-proxy-setup-ca.in
+++ b/src/gns/gnunet-gns-proxy-setup-ca.in
@@ -46,10 +46,35 @@
46# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY 46# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
47# OF SUCH DAMAGE. 47# OF SUCH DAMAGE.
48 48
49. @pkgdatadir@/progname.sh 49dir=$(dirname "$0")
50. @pkgdatadir@/existence.sh 50
51. @pkgdatadir@/msg.sh 51if test -e @pkgdatadir@/progname.sh
52. @pkgdatadir@/version_gnunet.sh 52then
53 . @pkgdatadir@/progname.sh
54else
55 . $dir/../../contrib/build-common/sh/lib.sh/progname.sh
56fi
57
58if test -e @pkgdatadir@/existence.sh
59then
60 . @pkgdatadir@/existence.sh
61else
62 . $dir/../../contrib/build-common/sh/lib.sh/existence.sh
63fi
64
65if test -e @pkgdatadir@/msg.sh
66then
67 . @pkgdatadir@/msg.sh
68else
69 . $dir/../../contrib/build-common/sh/lib.sh/msg.sh
70fi
71
72if test -e @pkgdatadir@/version_gnunet.sh
73then
74 . @pkgdatadir@/version_gnunet.sh
75else
76 . $dir/../../contrib/build-common/sh/lib.sh/version_gnunet.sh
77fi
53 78
54# Whitespace normalization without depending on shell features: 79# Whitespace normalization without depending on shell features:
55tab=' ' 80tab=' '