diff options
| author | Michael Albinus | 2006-02-12 20:22:28 +0000 |
|---|---|---|
| committer | Michael Albinus | 2006-02-12 20:22:28 +0000 |
| commit | 7dbde7dd2e4a97d4beb6b6919e608d2b8092f30b (patch) | |
| tree | b533bb17e8d7d0ba5812b6d1922f195561d0a593 | |
| parent | 401b2885e6408c32f3d784c539ac1f0581b589ba (diff) | |
| download | emacs-7dbde7dd2e4a97d4beb6b6919e608d2b8092f30b.tar.gz emacs-7dbde7dd2e4a97d4beb6b6919e608d2b8092f30b.zip | |
* 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>.
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/net/tramp.el | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 4288df5e4a9..64e9f7dc27c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2006-02-12 Michael Albinus <michael.albinus@gmx.de> | ||
| 2 | |||
| 3 | * net/tramp.el (tramp-remote-path): Add "/usr/xpg4/bin" on top, | ||
| 4 | because on Solaris a POSIX compatible "id" is needed. Reported by | ||
| 5 | Magnus Henoch <mange@freemail.hu>. | ||
| 6 | |||
| 1 | 2006-02-12 Juri Linkov <juri@jurta.org> | 7 | 2006-02-12 Juri Linkov <juri@jurta.org> |
| 2 | 8 | ||
| 3 | * tumme.el: Remove todo item about Thumbnail Managing Standard. | 9 | * tumme.el: Remove todo item about Thumbnail Managing Standard. |
diff --git a/lisp/net/tramp.el b/lisp/net/tramp.el index afe5308a918..58f74133cd5 100644 --- a/lisp/net/tramp.el +++ b/lisp/net/tramp.el | |||
| @@ -836,8 +836,10 @@ The default value is to use the same value as `tramp-rsh-end-of-line'." | |||
| 836 | :type 'string) | 836 | :type 'string) |
| 837 | 837 | ||
| 838 | (defcustom tramp-remote-path | 838 | (defcustom tramp-remote-path |
| 839 | '("/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin" "/usr/ccs/bin" | 839 | ;; "/usr/xpg4/bin" has been placed first, because on Solaris a POSIX |
| 840 | "/local/bin" "/local/freeware/bin" "/local/gnu/bin" | 840 | ;; compatible "id" is needed. |
| 841 | '("/usr/xpg4/bin" "/bin" "/usr/bin" "/usr/sbin" "/usr/local/bin" | ||
| 842 | "/usr/ccs/bin" "/local/bin" "/local/freeware/bin" "/local/gnu/bin" | ||
| 841 | "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin") | 843 | "/usr/freeware/bin" "/usr/pkg/bin" "/usr/contrib/bin") |
| 842 | "*List of directories to search for executables on remote host. | 844 | "*List of directories to search for executables on remote host. |
| 843 | Please notify me about other semi-standard directories to include here. | 845 | Please notify me about other semi-standard directories to include here. |
| @@ -1735,7 +1737,7 @@ on the remote host.") | |||
| 1735 | (defvar tramp-perl-encode | 1737 | (defvar tramp-perl-encode |
| 1736 | "%s -e ' | 1738 | "%s -e ' |
| 1737 | # This script contributed by Juanma Barranquero <lektu@terra.es>. | 1739 | # This script contributed by Juanma Barranquero <lektu@terra.es>. |
| 1738 | # Copyright (C) 2006 Free Software Foundation, Inc. | 1740 | # Copyright (C) 2002, 2006 Free Software Foundation, Inc. |
| 1739 | use strict; | 1741 | use strict; |
| 1740 | 1742 | ||
| 1741 | my %%trans = do { | 1743 | my %%trans = do { |
| @@ -1777,7 +1779,7 @@ This string is passed to `format', so percent characters need to be doubled.") | |||
| 1777 | (defvar tramp-perl-decode | 1779 | (defvar tramp-perl-decode |
| 1778 | "%s -e ' | 1780 | "%s -e ' |
| 1779 | # This script contributed by Juanma Barranquero <lektu@terra.es>. | 1781 | # This script contributed by Juanma Barranquero <lektu@terra.es>. |
| 1780 | # Copyright (C) 2006 Free Software Foundation, Inc. | 1782 | # Copyright (C) 2002, 2006 Free Software Foundation, Inc. |
| 1781 | use strict; | 1783 | use strict; |
| 1782 | 1784 | ||
| 1783 | my %%trans = do { | 1785 | my %%trans = do { |