Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

tools: ynltool: correct install in Makefile

Use the variable in case user has a custom install binary.

Acked-by: Stanislav Fomichev <sdf@fomichev.me>
Link: https://patch.msgid.link/20251111155214.2760711-1-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+1 -1
+1 -1
tools/net/ynl/ynltool/Makefile
··· 49 49 bindir ?= /usr/bin 50 50 51 51 install: $(YNLTOOL) 52 - install -m 0755 $(YNLTOOL) $(DESTDIR)$(bindir)/$(YNLTOOL) 52 + $(INSTALL) -m 0755 $(YNLTOOL) $(DESTDIR)$(bindir)/$(YNLTOOL) 53 53 54 54 .PHONY: all clean distclean 55 55 .DEFAULT_GOAL=all