[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Info-mtools] [PATCH] Permit calling "make install" with >= -j2
From: |
Chris Lamb |
Subject: |
[Info-mtools] [PATCH] Permit calling "make install" with >= -j2 |
Date: |
Sat, 05 Jan 2019 22:16:58 +0100 |
Hi info-mtools,
Currently, if you call the "install" target with a parallelism
parameter >= 2 (ie. not in "single-CPU mode"), then installation
will generally fail as each call will race and try and create the
bin/ directory when it already exists.
The patch below (and attached) fixes this.
From: Chris Lamb <address@hidden>
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/"
Regards,
--
,''`.
: :' : Chris Lamb
`. `'` address@hidden / chris-lamb.co.uk
`-
0002-Permit-calling-make-install-with-j2.patch
Description: Text Data
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Info-mtools] [PATCH] Permit calling "make install" with >= -j2,
Chris Lamb <=