]> git.eshelyaron.com Git - emacs.git/commitdiff
Check also for "gvfs-monitor-dir.exe" in Tramp
authorMichael Albinus <michael.albinus@gmx.de>
Mon, 2 Jan 2017 18:30:21 +0000 (19:30 +0100)
committerMichael Albinus <michael.albinus@gmx.de>
Mon, 2 Jan 2017 18:30:21 +0000 (19:30 +0100)
* lisp/net/tramp-sh.el (tramp-get-remote-gvfs-monitor-dir): Check also
for "gvfs-monitor-dir.exe".

lisp/net/tramp-sh.el

index b0a2c431f95807301cf8f43f2e8fc81eab0977ef..fec9f10d7046c581fd197c241d37cc6e798ace97 100644 (file)
@@ -5409,8 +5409,13 @@ Nonexistent directories are removed from spec."
   "Determine remote `gvfs-monitor-dir' command."
   (with-tramp-connection-property vec "gvfs-monitor-dir"
     (tramp-message vec 5 "Finding a suitable `gvfs-monitor-dir' command")
-    (tramp-find-executable
-     vec "gvfs-monitor-dir" (tramp-get-remote-path vec) t t)))
+    ;; We distinguish "gvfs-monitor-dir.exe" from cygwin in order to
+    ;; establish better timeouts in filenotify-tests.el.  Any better
+    ;; distinction approach would be welcome!
+    (or (tramp-find-executable
+        vec "gvfs-monitor-dir.exe" (tramp-get-remote-path vec) t t)
+       (tramp-find-executable
+        vec "gvfs-monitor-dir" (tramp-get-remote-path vec) t t))))
 
 (defun tramp-get-remote-inotifywait (vec)
   "Determine remote `inotifywait' command."