comparison src/Makefile @ 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 78d7b92bfb1d
children 561b76ed9d12
comparison
equal deleted inserted replaced
11381:2671bb1e1c74 11382:3f399c28e4af
1405 ################################################ 1405 ################################################
1406 ## no changes required below this line ## 1406 ## no changes required below this line ##
1407 ################################################ 1407 ################################################
1408 1408
1409 SHELL = /bin/sh 1409 SHELL = /bin/sh
1410
1411 # We would normally use "mkdir -p" but it doesn't work properly everywhere.
1412 # Using AC_PROG_MKDIR_P in configure.ac has a problem with the "auto"
1413 # directory. Always use the install-sh script, it's slower but reliable.
1414 MKDIR_P = $(SHELL) install-sh -c -d
1410 1415
1411 .SUFFIXES: 1416 .SUFFIXES:
1412 .SUFFIXES: .c .o .pro 1417 .SUFFIXES: .c .o .pro
1413 1418
1414 PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS) 1419 PRE_DEFS = -Iproto $(DEFS) $(GUI_DEFS) $(GUI_IPATH) $(CPPFLAGS) $(EXTRA_IPATHS)