`cat' is usually in /bin, not /usr/bin, at least on our systems.

llvm-svn: 11690
This commit is contained in:
Misha Brukman 2004-02-21 21:51:41 +00:00
parent 375e3a1d4a
commit 0025f1b044
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ static void PrintStackTrace() {
execlp("c++filt", "c++filt", 0); execlp("c++filt", "c++filt", 0);
execlp("gc++filt", "gc++filt", 0); execlp("gc++filt", "gc++filt", 0);
execlp("cat", "cat", 0); execlp("cat", "cat", 0);
execlp("/usr/bin/cat", "cat", 0); execlp("/bin/cat", "cat", 0);
exit(0); exit(0);
} }
#endif #endif