aboutsummaryrefslogtreecommitdiff
path: root/src/util/gnunet-qr.c
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-03 02:10:13 +0100
committerHartmut Goebel <h.goebel@crazy-compilers.com>2019-03-13 18:22:07 +0100
commit70a749982e4ed34468d11affebe03a718facf3f4 (patch)
tree492bd9f6075cbc8d2848a1fd76089b8cad5ee903 /src/util/gnunet-qr.c
parentd60866a5dfb1a3529d40ee4c445b891c68a362c8 (diff)
downloadgnunet-70a749982e4ed34468d11affebe03a718facf3f4.tar.gz
gnunet-70a749982e4ed34468d11affebe03a718facf3f4.zip
gnunet-qr: Use the `gnunet-uri` binary installed into PREFIX.
This helps keeping environments concise and functional package managers like guix this will ensure `gnunet-uri` from the same environment is used.
Diffstat (limited to 'src/util/gnunet-qr.c')
-rw-r--r--src/util/gnunet-qr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/gnunet-qr.c b/src/util/gnunet-qr.c
index c8919dae4..ea0e0fea2 100644
--- a/src/util/gnunet-qr.c
+++ b/src/util/gnunet-qr.c
@@ -132,11 +132,11 @@ int main (int argc, char **argv)
132 if (configuration == NULL) { 132 if (configuration == NULL) {
133 char* command_args[] = {"gnunet-uri", data, NULL }; 133 char* command_args[] = {"gnunet-uri", data, NULL };
134 LOG("Running `gnunet-uri %s`\n", data); 134 LOG("Running `gnunet-uri %s`\n", data);
135 rc = fork_and_exec("gnunet-uri", command_args); 135 rc = fork_and_exec(BINDIR "gnunet-uri", command_args);
136 } else { 136 } else {
137 char* command_args[] = {"gnunet-uri", "-c", configuration, data, NULL }; 137 char* command_args[] = {"gnunet-uri", "-c", configuration, data, NULL };
138 LOG("Running `gnunet-uri -c '%s' %s`\n", configuration, data); 138 LOG("Running `gnunet-uri -c '%s' %s`\n", configuration, data);
139 rc = fork_and_exec("gnunet-uri", command_args); 139 rc = fork_and_exec(BINDIR "gnunet-uri", command_args);
140 }; 140 };
141 141
142 if (rc != 0) { 142 if (rc != 0) {