From: Chris Lamb Date: Sat, 5 Jan 2019 22:07:05 +0100 Subject: Permit calling "make install" with >= -j2. --- mkinstalldirs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkinstalldirs b/mkinstalldirs index 6a5fd0b..d9ffdf8 100755 --- a/mkinstalldirs +++ b/mkinstalldirs @@ -38,7 +38,7 @@ for file in ${1+"$@"} ; do if test ! -d "$pathcomp"; then echo "mkdir $pathcomp" 1>&2 - mkdir "$pathcomp" || errstatus=$? + mkdir -p "$pathcomp" || errstatus=$? fi pathcomp="$pathcomp/"