`cat' is usually in /bin, not /usr/bin, at least on our systems.
llvm-svn: 11690
This commit is contained in:
parent
375e3a1d4a
commit
0025f1b044
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue