diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-04-21 23:00:02 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-04-21 23:00:02 +0200 |
commit | 1d4be82c7d794e62bcf892310fe2a9b1eb5e2fec (patch) | |
tree | 82e4173f4dcdb6b0b7f5c050cab559ed3bc9f798 /src/Makefile | |
parent | a701b3b6f0f06ac0c9fcc75c6c34a1258fc3b1a2 (diff) | |
download | vim-1d4be82c7d794e62bcf892310fe2a9b1eb5e2fec.zip |
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)
Diffstat (limited to 'src/Makefile')
-rw-r--r-- | src/Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile index bcfbbb722..ddb61dc08 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1408,6 +1408,11 @@ PROTO_FLAGS = -d -E"$(CPP)" $(NO_ATTR) SHELL = /bin/sh +# We would normally use "mkdir -p" but it doesn't work properly everywhere. +# Using AC_PROG_MKDIR_P in configure.ac has a problem with the "auto" +# directory. Always use the install-sh script, it's slower but reliable. +MKDIR_P = $(SHELL) install-sh -c -d + .SUFFIXES: .SUFFIXES: .c .o .pro |