aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-06-18 18:26:22 +0000
committerChris Lattner <sabre@nondot.org>2003-06-18 18:26:22 +0000
commit433c3fea6deb377a7e46f28b2cebafaf74bf02d6 (patch)
tree3146dbce23d336f84fd0f706802d2655bdd7e5bc /utils
parenta34f440f69ffe1ec18df2fcb649577debd94a680 (diff)
downloadexternal_llvm-433c3fea6deb377a7e46f28b2cebafaf74bf02d6.zip
external_llvm-433c3fea6deb377a7e46f28b2cebafaf74bf02d6.tar.gz
external_llvm-433c3fea6deb377a7e46f28b2cebafaf74bf02d6.tar.bz2
Fix breakage due to John's recent changes
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6771 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils')
-rwxr-xr-xutils/NightlyTest.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NightlyTest.pl b/utils/NightlyTest.pl
index ec7edaa..1a56b97 100755
--- a/utils/NightlyTest.pl
+++ b/utils/NightlyTest.pl
@@ -155,9 +155,9 @@ $LOC = GetRegex "([0-9]+) +total", `wc -l \`utils/getsrcs.sh\` | grep total`;
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";