summaryrefslogtreecommitdiff
path: root/lib/Support/Signals.cpp
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2004-02-21 21:51:41 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2004-02-21 21:51:41 +0000
commitac2ecd0ba01f8900cb8e939fbc8cb076a8049ded (patch)
tree09a76432f28133d9922a843512ed7eeeb72cede0 /lib/Support/Signals.cpp
parentb9632bee7ca842c2721340c42e18bfd0109ce5aa (diff)
downloadllvm-ac2ecd0ba01f8900cb8e939fbc8cb076a8049ded.tar.gz
llvm-ac2ecd0ba01f8900cb8e939fbc8cb076a8049ded.tar.bz2
llvm-ac2ecd0ba01f8900cb8e939fbc8cb076a8049ded.tar.xz
`cat' is usually in /bin, not /usr/bin, at least on our systems.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11690 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Signals.cpp')
-rw-r--r--lib/Support/Signals.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/Signals.cpp b/lib/Support/Signals.cpp
index d4e74aa089..112cd783e4 100644
--- a/lib/Support/Signals.cpp
+++ b/lib/Support/Signals.cpp
@@ -99,7 +99,7 @@ static void PrintStackTrace() {
execlp("c++filt", "c++filt", 0);
execlp("gc++filt", "gc++filt", 0);
execlp("cat", "cat", 0);
- execlp("/usr/bin/cat", "cat", 0);
+ execlp("/bin/cat", "cat", 0);
exit(0);
}
#endif