diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-05-02 18:15:22 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-05-02 18:15:22 +0000 |
commit | d43e0b1674f5d7250b5e452e78d64cc048d8f9d3 (patch) | |
tree | 6d096caab206c7552fd27774a1b7d796b99b0b3b /lisp/dired.el | |
parent | 6705a2a650c88e7031f9b3ea904addebb1580dfa (diff) | |
download | emacs-d43e0b1674f5d7250b5e452e78d64cc048d8f9d3.tar.gz |
Unspecified location of chown for Linux (Linux doesn't put chown in /etc).
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index a7a9dfa525e..49c0ade3fba 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -47,7 +47,7 @@ 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)) + (if (memq system-type '(hpux dgux usg-unix-v irix linux)) "chown" "/etc/chown") "Name of chown command (usually `chown' or `/etc/chown').") |