Lines Matching refs:mode
69 # Desired mode of installed file.
70 mode=0755
129 -m) mode=$2
130 case $mode in
132 echo "$0: invalid mode: $mode" >&2
224 case $mode in
235 cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;;
242 cp_umask=$mode$u_plus_rw;;
296 # Create intermediate dirs using mode 755 as modified by the umask.
312 # With -d, create the new directory with the user-specified mode.
315 mkdir_mode=-m$mode
337 # FreeBSD 6.1 mkdir -m -p sets mode of existing directory.
426 test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1
448 { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } &&