aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1994-05-02 18:15:22 +0000
committerRichard M. Stallman1994-05-02 18:15:22 +0000
commitd43e0b1674f5d7250b5e452e78d64cc048d8f9d3 (patch)
tree6d096caab206c7552fd27774a1b7d796b99b0b3b
parent6705a2a650c88e7031f9b3ea904addebb1580dfa (diff)
downloademacs-d43e0b1674f5d7250b5e452e78d64cc048d8f9d3.tar.gz
emacs-d43e0b1674f5d7250b5e452e78d64cc048d8f9d3.zip
Unspecified location of chown for Linux (Linux doesn't put chown in /etc).
-rw-r--r--lisp/dired.el2
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
47 47
48;;;###autoload 48;;;###autoload
49(defvar dired-chown-program 49(defvar dired-chown-program
50 (if (memq system-type '(hpux dgux usg-unix-v irix)) 50 (if (memq system-type '(hpux dgux usg-unix-v irix linux))
51 "chown" "/etc/chown") 51 "chown" "/etc/chown")
52 "Name of chown command (usually `chown' or `/etc/chown').") 52 "Name of chown command (usually `chown' or `/etc/chown').")
53 53