]> git.eshelyaron.com Git - emacs.git/commitdiff
(find-grep-options): Treat solaris, irix like BSD.
authorRichard M. Stallman <rms@gnu.org>
Tue, 12 Nov 1996 06:04:05 +0000 (06:04 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 12 Nov 1996 06:04:05 +0000 (06:04 +0000)
lisp/find-dired.el

index 2b945dddc9ea99ea0a3c11156f04c5fa8058fd7d..9fa21487d7ead96178c7dcf5f0ae3a055246c53b 100644 (file)
@@ -38,7 +38,11 @@ gives the option (or options) to `find' that produce the desired output.
 LS-SWITCHES is a list of `ls' switches to tell dired how to parse the output.")
 
 ;;;###autoload
-(defvar find-grep-options (if (eq system-type 'berkeley-unix) "-s" "-q")
+(defvar find-grep-options
+  (if (or (eq system-type 'berkeley-unix)
+         (string-match "solaris2" system-configuration)
+         (string-match "irix" system-configuration))
+      "-s" "-q")
   "*Option to grep to be as silent as possible.
 On Berkeley systems, this is `-s'; on Posix, and with GNU grep, `-q' does it.
 On other systems, the closest you can come is to use `-l'.")