summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBastian Krause <bst@pengutronix.de>2022-01-19 16:55:44 +0100
committerMichael Olbrich <m.olbrich@pengutronix.de>2022-01-21 10:14:37 +0100
commitd67b82df99ffce2a36870a3805af2d4873a63aed (patch)
tree146d254e9597041fb335d93667b30531916b0e43
parent782bae9607a8d16be1cd3eb722fdc65d99e50ec4 (diff)
downloadptxdist-d67b82df99ffce2a36870a3805af2d4873a63aed.tar.gz
ptxdist-d67b82df99ffce2a36870a3805af2d4873a63aed.tar.xz
vim: fix xxd install location
Installing xxd to /usr/bin/vim is obviously wrong. In case PTXCONF_VIM_VIM and PTXCONF_VIM_XXD are enabled, vim is even overwritten. Fix that by installing xxd to /usr/bin/xxd. Fixes: c538cff7e ("vim: add install options") Signed-off-by: Bastian Krause <bst@pengutronix.de> Message-Id: <20220119155544.3364301-1-bst@pengutronix.de> Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/vim.make2
1 files changed, 1 insertions, 1 deletions
diff --git a/rules/vim.make b/rules/vim.make
index 6965e2537..a21b92f59 100644
--- a/rules/vim.make
+++ b/rules/vim.make
@@ -118,7 +118,7 @@ ifdef PTXCONF_VIM_VIM
endif
ifdef PTXCONF_VIM_XXD
- @$(call install_copy, vim, 0, 0, 0755, $(VIM_DIR)/$(VIM_SUBDIR)/xxd/xxd, /usr/bin/vim)
+ @$(call install_copy, vim, 0, 0, 0755, $(VIM_DIR)/$(VIM_SUBDIR)/xxd/xxd, /usr/bin/xxd)
endif
@$(call install_finish, vim)