You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
1.1 KiB

  1. --- a/config-top.h
  2. +++ b/config-top.h
  3. @@ -91,20 +91,20 @@
  4. #define DEFAULT_BASHRC "~/.bashrc"
  5. /* System-wide .bashrc file for interactive shells. */
  6. -/* #define SYS_BASHRC "/etc/bash.bashrc" */
  7. +#define SYS_BASHRC "/etc/bash.bashrc"
  8. /* System-wide .bash_logout for login shells. */
  9. -/* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */
  10. +#define SYS_BASH_LOGOUT "/etc/bash.bash_logout"
  11. /* Define this to make non-interactive shells begun with argv[0][0] == '-'
  12. run the startup files when not in posix mode. */
  13. -/* #define NON_INTERACTIVE_LOGIN_SHELLS */
  14. +#define NON_INTERACTIVE_LOGIN_SHELLS
  15. /* Define this if you want bash to try to check whether it's being run by
  16. sshd and source the .bashrc if so (like the rshd behavior). This checks
  17. for the presence of SSH_CLIENT or SSH2_CLIENT in the initial environment,
  18. which can be fooled under certain not-uncommon circumstances. */
  19. -/* #define SSH_SOURCE_BASHRC */
  20. +#define SSH_SOURCE_BASHRC
  21. /* Define if you want the case-toggling operators (~[~]) and the
  22. `capcase' variable attribute (declare -c). */