1
Fork 0
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:
Richard M. Stallman 1996-06-07 14:57:04 +00:00
parent 6238bfaf9c
commit 6702f50da6

View file

@ -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