summaryrefslogtreecommitdiff
blob: c97cbe333ca19e538f9afcace0bbd58383177146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
--- a/src/cmd/ksh93/data/msg.c
+++ b/src/cmd/ksh93/data/msg.c
@@ -180,7 +180,7 @@
 const char e_sptbnl[]		= " \t\n";
 const char e_tolower[]		= "tolower";
 const char e_toupper[]		= "toupper";
-const char e_defpath[]		= "/bin:/usr/bin:";
+const char e_defpath[]		= "@GENTOO_PORTAGE_EPREFIX@/bin:@GENTOO_PORTAGE_EPREFIX@/usr/bin:";
 const char e_defedit[]		= _pth_ed;
 const char e_unknown []		= "<command unknown>";
 const char e_devnull[]		= "/dev/null";
@@ -188,24 +188,24 @@
 const char e_supprompt[]	= "# ";
 const char e_stdprompt[]	= "$ ";
 const char e_profile[]		= "$HOME/.profile";
-const char e_sysprofile[]	= "/etc/profile";
-const char e_suidprofile[]	= "/etc/suid_profile";
+const char e_sysprofile[]	= "@GENTOO_PORTAGE_EPREFIX@/etc/profile";
+const char e_suidprofile[]	= "@GENTOO_PORTAGE_EPREFIX@/etc/suid_profile";
 #if SHOPT_SYSRC
-const char e_sysrc[]		= "/etc/ksh.kshrc";
+const char e_sysrc[]		= "@GENTOO_PORTAGE_EPREFIX@/etc/ksh.kshrc";
 #endif
 #if SHOPT_BASH
 #if SHOPT_SYSRC
-const char e_bash_sysrc[]	= "/etc/bash.bashrc";
+const char e_bash_sysrc[]	= "@GENTOO_PORTAGE_EPREFIX@/etc/bash/bashrc";
 #endif
 const char e_bash_rc[]		= "$HOME/.bashrc";
 const char e_bash_login[]	= "$HOME/.bash_login";
 const char e_bash_logout[]	= "$HOME/.bash_logout";
 const char e_bash_profile[]	= "$HOME/.bash_profile";
 #endif
-const char e_crondir[]		= "/usr/spool/cron/atjobs";
+const char e_crondir[]		= "@GENTOO_PORTAGE_EPREFIX@/usr/spool/cron/atjobs";
 const char e_prohibited[]	= "login setuid/setgid shells prohibited";
 #if SHOPT_SUID_EXEC
-   const char e_suidexec[]	= "/etc/suid_exec";
+   const char e_suidexec[]	= "@GENTOO_PORTAGE_EPREFIX@/etc/suid_exec";
 #endif /* SHOPT_SUID_EXEC */
 const char hist_fname[]		= "/.sh_history";
 const char e_dot[]		= ".";