diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/ash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/shell/ash.c b/shell/ash.c index 64e64d95e..758fdfde4 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -13249,7 +13249,8 @@ init(void) | |||
13249 | } | 13249 | } |
13250 | } | 13250 | } |
13251 | 13251 | ||
13252 | setvar("PPID", utoa(getppid()), 0); | 13252 | if (!ENABLE_PLATFORM_MINGW32) |
13253 | setvar("PPID", utoa(getppid()), 0); | ||
13253 | 13254 | ||
13254 | p = lookupvar("PWD"); | 13255 | p = lookupvar("PWD"); |
13255 | if (p) | 13256 | if (p) |