Don't look at $PWD in GetCurrentDirectory.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@136477 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nick Lewycky 2011-07-29 18:26:59 +00:00
parent 5a28748360
commit 2b9c50776a

View File

@ -251,9 +251,6 @@ Path::GetUserHomeDirectory() {
Path
Path::GetCurrentDirectory() {
if (char *pwd = getenv("PWD"))
return Path(pwd);
char pathname[MAXPATHLEN];
if (!getcwd(pathname, MAXPATHLEN)) {
assert(false && "Could not query current working directory.");