diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-10-16 02:40:17 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-10-16 02:40:17 +0000 |
commit | 34d809a47a2c47b585eb884e88d49688afcef775 (patch) | |
tree | af472a8056a69e6b9702f1c0205cc26e29074e77 /app-shells | |
parent | cleanup from previous gentoo patch on mirrors and split off some fixes into s... (diff) | |
download | historical-34d809a47a2c47b585eb884e88d49688afcef775.tar.gz historical-34d809a47a2c47b585eb884e88d49688afcef775.tar.bz2 historical-34d809a47a2c47b585eb884e88d49688afcef775.zip |
move all config touchups into one patch
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/bash/files/bash-3.0-configs.patch | 71 |
1 files changed, 71 insertions, 0 deletions
diff --git a/app-shells/bash/files/bash-3.0-configs.patch b/app-shells/bash/files/bash-3.0-configs.patch new file mode 100644 index 000000000000..84e96242d845 --- /dev/null +++ b/app-shells/bash/files/bash-3.0-configs.patch @@ -0,0 +1,71 @@ +--- bash-3.0/config.h.in ++++ bash-3.0/config.h.in +@@ -197,7 +197,7 @@ + + /* System paths */ + +-#define DEFAULT_MAIL_DIRECTORY "/usr/spool/mail" ++#define DEFAULT_MAIL_DIRECTORY "/var/spool/mail" + + /* Characteristics of the system's header files and libraries that affect + the compilation environment. */ +--- bash-3.0/config-bot.h ++++ bash-3.0/config-bot.h +@@ -178,4 +178,18 @@ + /******************************************************************/ + + /* If you don't want bash to provide a default mail file to check. */ +-/* #undef DEFAULT_MAIL_DIRECTORY */ ++/* DP: - don't define a default DEFAULT_MAIL_DIRECTORY, because it ++ * DP: can cause a timeout on NFS mounts. ++ */ ++#undef DEFAULT_MAIL_DIRECTORY ++ ++/* Force pgrp synchronization ++ * (https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=81653) ++ * ++ * The session will hang cases where you 'su' (not 'su -') and ++ * then run a piped command in emacs. ++ * This problem seem to happen due to scheduler changes kernel ++ * side - although reproduceble with later 2.4 kernels, it is ++ * especially easy with 2.6 kernels. ++ */ ++#define PGRP_PIPE 1 +--- bash-3.0/config-top.h ++++ bash-3.0/config-top.h +@@ -52,14 +52,14 @@ + /* The default value of the PATH variable. */ + #ifndef DEFAULT_PATH_VALUE + #define DEFAULT_PATH_VALUE \ +- "/usr/gnu/bin:/usr/local/bin:/bin:/usr/bin:." ++ "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" + #endif + + /* The value for PATH when invoking `command -p'. This is only used when + the Posix.2 confstr () function, or CS_PATH define are not present. */ + #ifndef STANDARD_UTILS_PATH + #define STANDARD_UTILS_PATH \ +- "/bin:/usr/bin:/sbin:/usr/sbin:/etc:/usr/etc" ++ "/bin:/usr/bin:/sbin:/usr/sbin" + #endif + + /* Default primary and secondary prompt strings. */ +@@ -74,14 +74,16 @@ + + /* System-wide .bashrc file for interactive shells. */ + /* #define SYS_BASHRC "/etc/bash.bashrc" */ ++#define SYS_BASHRC "/etc/bash/bashrc" /* #26952 */ + + /* System-wide .bash_logout for login shells. */ + /* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */ ++#define SYS_BASH_LOGOUT "/etc/bash/bash_logout" /* #90488 */ + + /* Define this to make non-interactive shells begun with argv[0][0] == '-' + run the startup files when not in posix mode. */ +-/* #define NON_INTERACTIVE_LOGIN_SHELLS */ ++#define NON_INTERACTIVE_LOGIN_SHELLS + + /* Define this if you want bash to try to check whether it's being run by + sshd and source the .bashrc if so (like the rshd behavior). */ +-/* #define SSH_SOURCE_BASHRC */ ++#define SSH_SOURCE_BASHRC /* #24762 */ |