mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-30 12:21:25 -08:00
(dired-chown-program): Try /usr/sbin/chown.
This commit is contained in:
parent
6238bfaf9c
commit
6702f50da6
1 changed files with 4 additions and 1 deletions
|
|
@ -49,7 +49,10 @@ may contain even `F', `b', `i' and `s'. See also the variable
|
|||
;;;###autoload
|
||||
(defvar dired-chown-program
|
||||
(if (memq system-type '(hpux dgux usg-unix-v irix linux lignux))
|
||||
"chown" "/etc/chown")
|
||||
"chown"
|
||||
(if (file-exists-p "/usr/sbin/chown")
|
||||
"/usr/sbin/chown"
|
||||
"/etc/chown"))
|
||||
"Name of chown command (usually `chown' or `/etc/chown').")
|
||||
|
||||
(defvar dired-chmod-program
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue