diff options
author | cvpcs <root@cvpcs.org> | 2010-06-03 08:35:40 -0500 |
---|---|---|
committer | cvpcs <root@cvpcs.org> | 2010-06-03 08:35:40 -0500 |
commit | 0d1cd6f8733988394f50f6e8cf2ebe4e993104b3 (patch) | |
tree | ea961121bd3215e4e85e02f4b53171fb46fa1544 | |
parent | a013d4e66d2545c04e2599aa2e4a4fc50468153d (diff) | |
download | external_bash-0d1cd6f8733988394f50f6e8cf2ebe4e993104b3.zip external_bash-0d1cd6f8733988394f50f6e8cf2ebe4e993104b3.tar.gz external_bash-0d1cd6f8733988394f50f6e8cf2ebe4e993104b3.tar.bz2 |
set some paths and removed the debugger
-rw-r--r-- | config-top.h | 6 | ||||
-rw-r--r-- | config.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/config-top.h b/config-top.h index 147d4f4..67ddcac 100644 --- a/config-top.h +++ b/config-top.h @@ -54,14 +54,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:." + "/sbin:/system/sbin:/system/bin:/system/xbin:." #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" + "/sbin:/system/sbin:/system/bin:/system/xbin:/system/etc" #endif /* Default primary and secondary prompt strings. */ @@ -75,7 +75,7 @@ #define KSH_COMPATIBLE_SELECT /* System-wide .bashrc file for interactive shells. */ -/* #define SYS_BASHRC "/etc/bash.bashrc" */ +#define SYS_BASHRC "/system/etc/.bashrc" /* System-wide .bash_logout for login shells. */ /* #define SYS_BASH_LOGOUT "/etc/bash.bash_logout" */ @@ -151,7 +151,7 @@ /* Define DEBUGGER if you want to compile in some features used only by the bash debugger. */ -#define DEBUGGER 1 +/* #undef DEBUGGER */ /* Define STRICT_POSIX if you want bash to be strictly posix.2 conformant by default (except for echo; that is controlled separately). */ |