Home | History | Annotate | Download | only in cmockery_0_1_2

Lines Matching refs:mkdir

69 # Solaris 8's mkdir -p isn't thread-safe.  If you mkdir -p a/b and
70 # mkdir -p a/c at the same time, both will detect that a is missing,
74 # ourselves to GNU mkdir, which is thread-safe.
77 if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
78 echo "mkdir -p -- $*"
79 exec mkdir -p -- "$@"
81 # On NextStep and OpenStep, the `mkdir' command does not
90 if mkdir -m "$dirmode" -p --version . >/dev/null 2>&1 &&
92 echo "mkdir -m $dirmode -p -- $*"
93 exec mkdir -m "$dirmode" -p -- "$@"
95 # Clean up after NextStep and OpenStep mkdir.
126 echo "mkdir $pathcomp"
128 mkdir "$pathcomp" || lasterr=$?