From 0025f1b04401d7ffb58f10a10548d48d57779bcc Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Sat, 21 Feb 2004 21:51:41 +0000 Subject: `cat' is usually in /bin, not /usr/bin, at least on our systems. llvm-svn: 11690 --- llvm/lib/Support/Signals.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'llvm/lib/Support/Signals.cpp') diff --git a/llvm/lib/Support/Signals.cpp b/llvm/lib/Support/Signals.cpp index d4e74aa089d..112cd783e43 100644 --- a/llvm/lib/Support/Signals.cpp +++ b/llvm/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 -- cgit v1.2.3