[llvm-commits] CVS: llvm/lib/Support/Signals.cpp

Michael Brukman brukman at cs.uiuc.edu
Sat Feb 21 15:52:01 PST 2004


Changes in directory llvm/lib/Support:

Signals.cpp updated: 1.16 -> 1.17

---
Log message:

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


---
Diffs of the changes:  (+1 -1)

Index: llvm/lib/Support/Signals.cpp
diff -u llvm/lib/Support/Signals.cpp:1.16 llvm/lib/Support/Signals.cpp:1.17
--- llvm/lib/Support/Signals.cpp:1.16	Sat Feb 21 15:06:19 2004
+++ llvm/lib/Support/Signals.cpp	Sat Feb 21 15:51:41 2004
@@ -99,7 +99,7 @@
     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





More information about the llvm-commits mailing list