summaryrefslogtreecommitdiffstats
path: root/src/Makefile
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/Makefile
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/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index bcfbbb7224..ddb61dc08a 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