1
0
forked from aniani/vim

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)
This commit is contained in:
Bram Moolenaar
2017-04-21 23:00:02 +02:00
parent a701b3b6f0
commit 1d4be82c7d
7 changed files with 9 additions and 83 deletions

View File

@@ -49,7 +49,7 @@ eviewname=$9
if test $what = "install" -a \( -f $destdir/$vimname.1 -o -f $destdir/$vimdiffname.1 -o -f $destdir/$eviewname.1 \); then
if test ! -d $destdir; then
echo creating $destdir
./mkinstalldirs $destdir
/bin/sh install-sh -c -d $destdir
fi
# ex