Fix Debian GNU/kFreeBSD build

Use the same LaunchProcessPosixSpawn as on FreeBSD and Linux.

llvm-svn: 196742
This commit is contained in:
Ed Maste 2013-12-09 01:35:42 +00:00
parent a930d12fe3
commit 991fe6c701
1 changed files with 1 additions and 1 deletions

View File

@ -1608,7 +1608,7 @@ Host::RunShellCommand (const char *command,
return error;
}
#if defined(__linux__) || defined(__FreeBSD__)
#if defined(__linux__) || defined(__FreeBSD__) || defined(__GLIBC__)
// The functions below implement process launching via posix_spawn() for Linux
// and FreeBSD.