summaryrefslogtreecommitdiffstats
path: root/debian/patches/fix-parallel-build.patch
blob: 1e0bf63eb8d907150f259f2aff7457dae4252b98 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Use system libtool to install radsecret
  ${PROGRAM_INSTALL} points to a local jlibtool instance, which might
  not compiled be yet with parallel building. ${INSTALL} is used in
  all other .mk files
Forwarded: https://github.com/FreeRADIUS/freeradius-server/issues/5365
Author: Bernhard Schmidt <berni@debian.org>
Last-Update: 2024-07-10

--- a/src/main/radsecret.mk
+++ b/src/main/radsecret.mk
@@ -2,4 +2,4 @@
 
 $(R)/$(bindir)/radsecret: ${top_srcdir}/src/main/radsecret
 	@$(ECHO) INSTALL radsecret
-	$(Q)${PROGRAM_INSTALL} -c -m 755 $< $@
+	$(Q)${INSTALL} -c -m 755 $< $@