Home | History | Annotate | Download | only in config

Lines Matching refs:mkdir

72 # Solaris 8's mkdir -p isn't thread-safe.  If you mkdir -p a/b and
73 # mkdir -p a/c at the same time, both will detect that a is missing,
77 # ourselves to GNU mkdir, which is thread-safe.
80 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
81 echo "mkdir -p -- $*"
82 exec mkdir -p -- "$@"
84 # On NextStep and OpenStep, the 'mkdir' command does not
93 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
95 echo "mkdir -m $dirmode -p -- $*"
96 exec mkdir -m "$dirmode" -p -- "$@"
98 # Clean up after NextStep and OpenStep mkdir.
129 echo "mkdir $pathcomp"
131 mkdir "$pathcomp" || lasterr=$?