]> git.eshelyaron.com Git - emacs.git/commitdiff
* net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
authorMichael Albinus <michael.albinus@gmx.de>
Sun, 12 Feb 2006 20:22:28 +0000 (20:22 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Sun, 12 Feb 2006 20:22:28 +0000 (20:22 +0000)
because on Solaris a POSIX compatible "id" is needed.  Reported by
Magnus Henoch <mange@freemail.hu>.

lisp/ChangeLog
lisp/net/tramp.el

index 4288df5e4a95c06d3fb00427fa3fdf8ce89ab9f0..64e9f7dc27ca37230f6588f7e3160a6bcb75b565 100644 (file)
@@ -1,3 +1,9 @@
+2006-02-12  Michael Albinus  <michael.albinus@gmx.de>
+
+       * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top,
+       because on Solaris a POSIX compatible "id" is needed.  Reported by
+       Magnus Henoch <mange@freemail.hu>.
+
 2006-02-12  Juri Linkov  <juri@jurta.org>
 
        * tumme.el: Remove todo item about Thumbnail Managing Standard.
index afe5308a91825634f6cf434f8573fe09e51ad4d1..58f74133cd5161e5392d55921f9b0a904826db53 100644 (file)
@@ -836,8 +836,10 @@ The default value is to use the same value as `tramp-rsh-end-of-line'."
   :type 'string)
 
 (defcustom tramp-remote-path
-  '("/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin" "/usr/ccs/bin"
-    "/local/bin" "/local/freeware/bin" "/local/gnu/bin"
+  ;; "/usr/xpg4/bin" has been placed first, because on Solaris a POSIX
+  ;; compatible "id" is needed.
+  '("/usr/xpg4/bin" "/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin"
+    "/usr/ccs/bin" "/local/bin" "/local/freeware/bin" "/local/gnu/bin"
     "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin")
   "*List of directories to search for executables on remote host.
 Please notify me about other semi-standard directories to include here.
@@ -1735,7 +1737,7 @@ on the remote host.")
 (defvar tramp-perl-encode
   "%s -e '
 # This script contributed by Juanma Barranquero <lektu@terra.es>.
-# Copyright (C) 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2006 Free Software Foundation, Inc.
 use strict;
 
 my %%trans = do {
@@ -1777,7 +1779,7 @@ This string is passed to `format', so percent characters need to be doubled.")
 (defvar tramp-perl-decode
   "%s -e '
 # This script contributed by Juanma Barranquero <lektu@terra.es>.
-# Copyright (C) 2006 Free Software Foundation, Inc.
+# Copyright (C) 2002, 2006 Free Software Foundation, Inc.
 use strict;
 
 my %%trans = do {