summaryrefslogtreecommitdiffstats
path: root/src/installman.sh
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-04-21 23:00:02 +0200
committerBram Moolenaar <Bram@vim.org>2017-04-21 23:00:02 +0200
commit1d4be82c7d794e62bcf892310fe2a9b1eb5e2fec (patch)
tree82e4173f4dcdb6b0b7f5c050cab559ed3bc9f798 /src/installman.sh
parenta701b3b6f0f06ac0c9fcc75c6c34a1258fc3b1a2 (diff)
patch 8.0.0576: can't build when configure choses "install-sh"v8.0.0576
Problem: Can't build when configure choses "install-sh". (Daniel Hahler) Solution: Always use install-sh. Fix remaining use of mkinstalldirs. (closes #1647)
Diffstat (limited to 'src/installman.sh')
-rwxr-xr-xsrc/installman.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/installman.sh b/src/installman.sh
index 0ac6c46a14..a2f09ad35e 100755
--- a/src/installman.sh
+++ b/src/installman.sh
@@ -39,7 +39,7 @@ tutorsubloc=$scriptloc/tutor
if test $what = "install" -o $what = "xxd"; then
if test ! -d $destdir; then
echo creating $destdir
- ./mkinstalldirs $destdir
+ /bin/sh install-sh -c -d $destdir
fi
fi