aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dns/Makefile.am2
-rw-r--r--src/exit/Makefile.am2
-rw-r--r--src/gns/nss/Makefile.am2
-rw-r--r--src/nat/Makefile.am4
-rw-r--r--src/transport/Makefile.am4
-rw-r--r--src/vpn/Makefile.am2
6 files changed, 8 insertions, 8 deletions
diff --git a/src/dns/Makefile.am b/src/dns/Makefile.am
index a8ff4265d..45b86c71b 100644
--- a/src/dns/Makefile.am
+++ b/src/dns/Makefile.am
@@ -21,7 +21,7 @@ pkgcfg_DATA = \
21if LINUX 21if LINUX
22HIJACKBIN = gnunet-helper-dns 22HIJACKBIN = gnunet-helper-dns
23install-exec-hook: 23install-exec-hook:
24 $(top_srcdir)/src/dns/install-dns-helper.sh $(libexecdir) $(GNUNETDNS_GROUP) $(SUDO_BINARY) || true 24 $(top_srcdir)/src/dns/install-dns-helper.sh $(DESTDIR)$(libexecdir) $(GNUNETDNS_GROUP) $(SUDO_BINARY) || true
25else 25else
26install-exec-hook: 26install-exec-hook:
27endif 27endif
diff --git a/src/exit/Makefile.am b/src/exit/Makefile.am
index 10a1ae8f9..6c4cbf114 100644
--- a/src/exit/Makefile.am
+++ b/src/exit/Makefile.am
@@ -22,7 +22,7 @@ dist_pkgcfg_DATA = \
22if LINUX 22if LINUX
23EXITBIN = gnunet-helper-exit 23EXITBIN = gnunet-helper-exit
24install-exec-hook: 24install-exec-hook:
25 $(top_srcdir)/src/exit/install-exit-helper.sh $(libexecdir) $(SUDO_BINARY) || true 25 $(top_srcdir)/src/exit/install-exit-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
26else 26else
27install-exec-hook: 27install-exec-hook:
28endif 28endif
diff --git a/src/gns/nss/Makefile.am b/src/gns/nss/Makefile.am
index 62da7109a..2551b9562 100644
--- a/src/gns/nss/Makefile.am
+++ b/src/gns/nss/Makefile.am
@@ -60,7 +60,7 @@ libnss_gns6_la_LDFLAGS=$(libnss_gns_la_LDFLAGS)
60if INSTALL_NSS 60if INSTALL_NSS
61if !MINGW 61if !MINGW
62install-data-hook: 62install-data-hook:
63 $(top_srcdir)/src/gns/nss/install-nss-plugin.sh $(SHELL) $(top_builddir) $(nssdir) $(SUDO_BINARY) 63 $(top_srcdir)/src/gns/nss/install-nss-plugin.sh $(SHELL) $(top_builddir) $(DESTDIR)$(nssdir) $(SUDO_BINARY)
64 64
65uninstall-hook: 65uninstall-hook:
66 $(top_srcdir)/src/gns/nss/uninstall-nss-plugin.sh $(SHELL) $(top_builddir) "rm -f $(nssdir)/libnss_gns.so.2" $(SUDO_BINARY) 66 $(top_srcdir)/src/gns/nss/uninstall-nss-plugin.sh $(SHELL) $(top_builddir) "rm -f $(nssdir)/libnss_gns.so.2" $(SUDO_BINARY)
diff --git a/src/nat/Makefile.am b/src/nat/Makefile.am
index 0fde4c22d..5e89ac24d 100644
--- a/src/nat/Makefile.am
+++ b/src/nat/Makefile.am
@@ -20,14 +20,14 @@ if LINUX
20 NATSERVER = gnunet-helper-nat-server.c 20 NATSERVER = gnunet-helper-nat-server.c
21 NATCLIENT = gnunet-helper-nat-client.c 21 NATCLIENT = gnunet-helper-nat-client.c
22install-exec-hook: 22install-exec-hook:
23 $(top_srcdir)/src/nat/install-nat-helper.sh $(libexecdir) $(SUDO_BINARY) || true 23 $(top_srcdir)/src/nat/install-nat-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
24else 24else
25if XFREEBSD 25if XFREEBSD
26 NATBIN = gnunet-helper-nat-server gnunet-helper-nat-client 26 NATBIN = gnunet-helper-nat-server gnunet-helper-nat-client
27 NATSERVER = gnunet-helper-nat-server.c 27 NATSERVER = gnunet-helper-nat-server.c
28 NATCLIENT = gnunet-helper-nat-client.c 28 NATCLIENT = gnunet-helper-nat-client.c
29install-exec-hook: 29install-exec-hook:
30 $(top_srcdir)/src/nat/install-nat-helper.sh $(libexecdir) $(SUDO_BINARY) || true 30 $(top_srcdir)/src/nat/install-nat-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
31endif 31endif
32else 32else
33install-exec-hook: 33install-exec-hook:
diff --git a/src/transport/Makefile.am b/src/transport/Makefile.am
index 950b0a9a0..001681181 100644
--- a/src/transport/Makefile.am
+++ b/src/transport/Makefile.am
@@ -95,9 +95,9 @@ endif
95 95
96if LINUX 96if LINUX
97install-exec-hook: 97install-exec-hook:
98 $(top_srcdir)/src/transport/install-wlan-helper.sh $(libexecdir) $(SUDO_BINARY) || true 98 $(top_srcdir)/src/transport/install-wlan-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
99if HAVE_LIBBLUETOOTH 99if HAVE_LIBBLUETOOTH
100 $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(libexecdir) $(SUDO_BINARY) || true 100 $(top_srcdir)/src/transport/install-bluetooth-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
101endif 101endif
102else 102else
103install-exec-hook: 103install-exec-hook:
diff --git a/src/vpn/Makefile.am b/src/vpn/Makefile.am
index 47bee896d..5517a45e3 100644
--- a/src/vpn/Makefile.am
+++ b/src/vpn/Makefile.am
@@ -22,7 +22,7 @@ pkgcfg_DATA = \
22if LINUX 22if LINUX
23VPNBIN = gnunet-helper-vpn 23VPNBIN = gnunet-helper-vpn
24install-exec-hook: 24install-exec-hook:
25 $(top_srcdir)/src/vpn/install-vpn-helper.sh $(libexecdir) $(SUDO_BINARY) || true 25 $(top_srcdir)/src/vpn/install-vpn-helper.sh $(DESTDIR)$(libexecdir) $(SUDO_BINARY) || true
26else 26else
27install-exec-hook: 27install-exec-hook:
28endif 28endif