blob: 3b7946f159595cbb2066f02d018566b20f4a1a23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
From 92280b2b3450827efa280596fdda788b59cdf357 Mon Sep 17 00:00:00 2001
From: Gilles Dartiguelongue <eva@gentoo.org>
Date: Thu, 4 Oct 2018 10:31:42 +0200
Subject: [PATCH 2/3] Install missing tool for sandboxing
---
client/Makefile.am | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/client/Makefile.am b/client/Makefile.am
index 5cff108abb..6cfc3c4538 100644
--- a/client/Makefile.am
+++ b/client/Makefile.am
@@ -24,7 +24,7 @@ endif
bin_PROGRAMS = boinc_client boinccmd
if !OS_WIN32
-pkglibexec_PROGRAMS = switcher
+pkglibexec_PROGRAMS = switcher setprojectgrp
endif
boinccmd_SOURCES = boinc_cmd.cpp
@@ -137,6 +137,10 @@ switcher_SOURCES = switcher.cpp
switcher_LDFLAGS = $(AM_LDFLAGS) -L../lib
switcher_LDADD = $(LIBBOINC)
+setprojectgrp_SOURCES = setprojectgrp.cpp
+setprojectgrp_LDFLAGS = $(AM_LDFLAGS) -L../lib
+setprojectgrp_LDADD = $(LIBBOINC)
+
## since we are using libtool we need some magic to get boinc and boinc_client
## to both be installed properly. The next two rules do that...
all-local: boinc$(EXEEXT)
--
2.19.0
|