1From 25bd5ae1664f5603c05c72b2c38525602f33da0a Mon Sep 17 00:00:00 2001
2From: Fabrice Fontaine <fontaine.fabrice@gmail.com>
3Date: Sun, 31 Mar 2024 19:17:45 +0200
4Subject: [PATCH] GNUMakefile.in: fix root install
5
6Set GROUP_T when installing configuration files as root to avoid the
7following build failure since commit
84b3b267db159dc23314de3062859481b7c397e32:
9
10/usr/bin/install: missing destination file operand after '/home/buildroot/instance-0/output-1/target/etc'
11
12Fixes:
13 - http://autobuild.buildroot.org/results/eb4ccf248c9c5048e9b71058bb0311b1e0763883
14
15Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
16Upstream: https://lists.privoxy.org/pipermail/privoxy-devel/2024-March/000760.html
17---
18 GNUmakefile.in | 1 +
19 1 file changed, 1 insertion(+)
20
21diff --git a/GNUmakefile.in b/GNUmakefile.in
22index cf79aae1..db1bab59 100644
23--- a/GNUmakefile.in
24+++ b/GNUmakefile.in
25@@ -927,6 +927,7 @@ install: CONF_DEST LOG_DEST PID_DEST check_doc GROUP_T
26 					$(ECHO)  " and to install the config files as that user and/or group!" ;\
27 					$(ECHO)  " Please read INSTALL, and create a privoxy user and group!" ;\
28 					$(ECHO)  "*******************************************************************" ;\
29+					GROUP_T=$(GROUP) ;\
30 				fi ;\
31 			else \
32 				GROUP_T=$(GROUP) ;\
33--
342.43.0
35
36