[llvm-commits] CVS: llvm/utils/NightlyTest.pl

Chris Lattner lattner at cs.uiuc.edu
Wed Jun 18 13:27:01 PDT 2003


Changes in directory llvm/utils:

NightlyTest.pl updated: 1.12 -> 1.13

---
Log message:

Fix breakage due to John's recent changes


---
Diffs of the changes:

Index: llvm/utils/NightlyTest.pl
diff -u llvm/utils/NightlyTest.pl:1.12 llvm/utils/NightlyTest.pl:1.13
--- llvm/utils/NightlyTest.pl:1.12	Sun May 11 10:23:10 2003
+++ llvm/utils/NightlyTest.pl	Wed Jun 18 13:26:22 2003
@@ -155,9 +155,9 @@
 if (!$NOCHECKOUT) {
   # Change the Makefile.config to build into the local directory...
   rename "Makefile.config", "Makefile.config.orig";
-  system "sed '/^LLVM_OBJ_DIR/d' < Makefile.config.orig > Makefile.config";
+  system "sed '/^OBJ_ROOT/d' < Makefile.config.orig > Makefile.config";
   system "echo >> Makefile.config";
-  system "echo 'LLVM_OBJ_DIR := .' >> Makefile.config";
+  system "echo 'OBJ_ROOT := .' >> Makefile.config";
 
   # Change the Makefile.config to not strip executables...
   system "echo 'KEEP_SYMBOLS := 1' >> Makefile.config";





More information about the llvm-commits mailing list