aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2021-11-28 09:52:14 +0100
committerChristian Grothoff <grothoff@gnunet.org>2021-11-28 09:52:14 +0100
commit4eb546478aaee8618567b5f7926e7f974b773d16 (patch)
tree5b2ccff67805656baf56d00f56e8f9bdd077cf71
parenta247333dc1c164b09fc6c8220735f725fb1bd578 (diff)
downloadgnunet-4eb546478aaee8618567b5f7926e7f974b773d16.tar.gz
gnunet-4eb546478aaee8618567b5f7926e7f974b773d16.zip
Hi guys, I hope you are well.
I had to patch contrib/Makefile.am in the current git version of GNUnet to let make install work for a staged install. Please find the patch attached. --madmurphy
-rw-r--r--contrib/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/Makefile.am b/contrib/Makefile.am
index 3841f20a8..e0370d3c9 100644
--- a/contrib/Makefile.am
+++ b/contrib/Makefile.am
@@ -250,10 +250,10 @@ aclocal_DATA = \
250 gnunet.m4 250 gnunet.m4
251 251
252install-data-hook: 252install-data-hook:
253 chmod o+x $(pkgdatadir)/netjail_core.sh 253 chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_core.sh'
254 chmod o+x $(pkgdatadir)/netjail_start.sh 254 chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_start.sh'
255 chmod o+x $(pkgdatadir)/netjail_stop.sh 255 chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_stop.sh'
256 chmod o+x $(pkgdatadir)/netjail_exec.sh 256 chmod o+x '$(DESTDIR)$(pkgdatadir)/netjail_exec.sh'
257 chmod o+x $(pkgdatadir)/topo.sh 257 chmod o+x '$(DESTDIR)$(pkgdatadir)/topo.sh'
258 258
259## EOF 259## EOF