mirror of
https://github.com/curl/curl.git
synced 2026-05-30 02:47:28 +03:00
Make mkinstalldirs ignore umask, for consistency with the rest of the
install process. Note that mkinstalldirs appears to be used only in some configurations.
This commit is contained in:
parent
03bbf4de48
commit
ff812ccdc9
1 changed files with 2 additions and 2 deletions
|
|
@ -22,9 +22,9 @@ do
|
|||
esac
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
echo "mkdir $pathcomp" 1>&2
|
||||
echo "mkdir -m0755 $pathcomp" 1>&2
|
||||
|
||||
mkdir "$pathcomp" || lasterr=$?
|
||||
mkdir -m0755 "$pathcomp" || lasterr=$?
|
||||
|
||||
if test ! -d "$pathcomp"; then
|
||||
errstatus=$lasterr
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue