summaryrefslogtreecommitdiffstats
path: root/rules/tomoyo-tools.make
diff options
context:
space:
mode:
authorLadislav Michl <ladis@linux-mips.org>2022-09-29 19:09:12 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2022-10-18 09:20:59 +0200
commit6c8bc2b44a033a4c7705bcda27f9804b76ccfdb7 (patch)
treef13c0b370c13160a43e3e3f4e295c460513ed721 /rules/tomoyo-tools.make
parent495bf5345a935064fa340765c6f96e24f6109288 (diff)
downloadptxdist-6c8bc2b44a033a4c7705bcda27f9804b76ccfdb7.tar.gz
ptxdist-6c8bc2b44a033a4c7705bcda27f9804b76ccfdb7.tar.xz
treewide: use $(ptx/nl) instead of ; in foreach loops
Signed-off-by: Ladislav Michl <ladis@linux-mips.org> Message-Id: <YzXROJ7IUVzYOo6G@lenoch> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'rules/tomoyo-tools.make')
-rw-r--r--rules/tomoyo-tools.make6
1 files changed, 4 insertions, 2 deletions
diff --git a/rules/tomoyo-tools.make b/rules/tomoyo-tools.make
index 5b009a37d..9b82a7725 100644
--- a/rules/tomoyo-tools.make
+++ b/rules/tomoyo-tools.make
@@ -72,10 +72,12 @@ $(STATEDIR)/tomoyo-tools.targetinstall:
@$(call install_copy, tomoyo-tools, 0, 0, 0755, -, /sbin/tomoyo-init)
@$(foreach prog, $(TOMOYO_TOOLS_SBIN_PROGS), \
- $(call install_copy, tomoyo-tools, 0, 0, 0755, -, /usr/sbin/$(prog));)
+ $(call install_copy, tomoyo-tools, 0, 0, 0755, -, \
+ /usr/sbin/$(prog))$(ptx/nl))
@$(foreach prog, $(TOMOYO_TOOLS_LIBEXEC_PROGS), \
- $(call install_copy, tomoyo-tools, 0, 0, 0755, -, /usr/lib/tomoyo/$(prog));)
+ $(call install_copy, tomoyo-tools, 0, 0, 0755, -, \
+ /usr/lib/tomoyo/$(prog))$(ptx/nl))
@$(call install_lib, tomoyo-tools, 0, 0, 0644, libtomoyotools)