diff src/installman.sh @ 11382:3f399c28e4af v8.0.0576

patch 8.0.0576: can't build when configure choses "install-sh" commit https://github.com/vim/vim/commit/1d4be82c7d794e62bcf892310fe2a9b1eb5e2fec Author: Bram Moolenaar <Bram@vim.org> Date: Fri Apr 21 23:00:02 2017 +0200 patch 8.0.0576: can't build when configure choses "install-sh" Problem: Can't build when configure choses "install-sh". (Daniel Hahler) Solution: Always use install-sh. Fix remaining use of mkinstalldirs. (closes #1647)
author Christian Brabandt <cb@256bit.org>
date Fri, 21 Apr 2017 23:15:03 +0200
parents 03f95f5e311b
children 3d2bae2e6b80
line wrap: on
line diff
--- 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