diff options
author | Darren Tucker <dtucker@zip.com.au> | 2017-12-01 07:11:47 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2017-12-01 07:13:34 +0100 |
commit | 6c8a246437f612ada8541076be2414846d767319 (patch) | |
tree | c3e47dda594bd83a2f55d5485713fc4c71482ddf /configure.ac | |
parent | Pull in newer install-sh from autoconf-2.69. (diff) | |
download | openssh-6c8a246437f612ada8541076be2414846d767319.tar.xz openssh-6c8a246437f612ada8541076be2414846d767319.zip |
Replace mkinstalldirs with mkdir -p.
Check for MIKDIR_P and use it instead of mkinstalldirs. Should fix "mkdir:
cannot create directory:... File exists" during "make install".
Patch from eb at emlix.com.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 78ba25c96..1c7af609d 100644 --- a/configure.ac +++ b/configure.ac @@ -30,6 +30,7 @@ AC_PROG_CPP AC_PROG_RANLIB AC_PROG_INSTALL AC_PROG_EGREP +AC_PROG_MKDIR_P AC_CHECK_TOOLS([AR], [ar]) AC_PATH_PROG([CAT], [cat]) AC_PATH_PROG([KILL], [kill]) |