diff options
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/shell/ash.c b/shell/ash.c index 586925835..2d51b48f9 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -14502,7 +14502,11 @@ init(void) | |||
14502 | * os.execv("ash", [ 'ash', '-c', 'env | grep test-test' ]) # breaks this | 14502 | * os.execv("ash", [ 'ash', '-c', 'env | grep test-test' ]) # breaks this |
14503 | */ | 14503 | */ |
14504 | if (strchr(*envp, '=')) { | 14504 | if (strchr(*envp, '=')) { |
14505 | #if !ENABLE_PLATFORM_MINGW32 | ||
14505 | setvareq(*envp, VEXPORT|VTEXTFIXED); | 14506 | setvareq(*envp, VEXPORT|VTEXTFIXED); |
14507 | #else | ||
14508 | setvareq(*envp, VEXPORT); | ||
14509 | #endif | ||
14506 | } | 14510 | } |
14507 | } | 14511 | } |
14508 | 14512 | ||