aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1992-10-21 19:30:34 +0000
committerRichard M. Stallman <[email protected]>1992-10-21 19:30:34 +0000
commit194ff7c129d43be79d64fb9d280a923588374230 (patch)
tree0f814d5b7e296eb30bc8c7deab5c9ca13a177710 /lisp
parented7ace63fc10db0b87975f635a44f0ad9e313468 (diff)
(dired-chown-program): Treat silicon-graphics-unix like usg-unix-v.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/dired.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el
index 55cb1f058d..0417a71e69 100644
--- a/lisp/dired.el
+++ b/lisp/dired.el
@@ -46,7 +46,8 @@ may contain even `F', `b', `i' and `s'.")
;;;###autoload
(defvar dired-chown-program
- (if (memq system-type '(hpux dgux usg-unix-v)) "chown" "/etc/chown")
+ (if (memq system-type '(hpux dgux usg-unix-v silicon-graphics-unix))
+ "chown" "/etc/chown")
"Name of chown command (usully `chown' or `/etc/chown').")
;;;###autoload