]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix find invocation for macOS (Bug#48471).
authorPhilipp Stephani <phst@google.com>
Mon, 17 May 2021 19:59:57 +0000 (21:59 +0200)
committerPhilipp Stephani <phst@google.com>
Sun, 23 May 2021 11:03:49 +0000 (13:03 +0200)
* lisp/progmodes/project.el (project--files-in-directory): Instead of
appending a slash (which doesn't work well with macOS find), remove
trailing slash and pass -H instead.

lisp/progmodes/project.el

index 047f55ed1ae2d89387d0a34a2500669df6dfeada..eab60756c8f3ebeb383adae97055f1f2ce4c2dd8 100644 (file)
@@ -297,11 +297,10 @@ to find the list of ignores for each directory."
          ;; expanded and not left for the shell command
          ;; to interpret.
          (localdir (file-name-unquote (file-local-name (expand-file-name dir))))
-         (command (format "%s %s %s -type f %s -print0"
+         (command (format "%s -H %s %s -type f %s -print0"
                           find-program
                           (shell-quote-argument
-                           ;; In case DIR is a symlink.
-                           (file-name-as-directory localdir))
+                           (directory-file-name localdir)) ; Bug#48471
                           (xref--find-ignores-arguments ignores localdir)
                           (if files
                               (concat (shell-quote-argument "(")