[llvm-commits] CVS: llvm/utils/NewNightlyTest.pl
Patrick Jenkins
pjenkins at apple.com
Thu Aug 3 09:29:13 PDT 2006
Changes in directory llvm/utils:
NewNightlyTest.pl updated: 1.38 -> 1.39
---
Log message:
One of the directories we were searching in for .o and .a files was wrong. We now search /lib instead of /libs.
---
Diffs of the changes: (+2 -2)
NewNightlyTest.pl | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: llvm/utils/NewNightlyTest.pl
diff -u llvm/utils/NewNightlyTest.pl:1.38 llvm/utils/NewNightlyTest.pl:1.39
--- llvm/utils/NewNightlyTest.pl:1.38 Wed Aug 2 18:48:07 2006
+++ llvm/utils/NewNightlyTest.pl Thu Aug 3 11:28:58 2006
@@ -677,7 +677,7 @@
}
ChangeDir( "$BuildDir/llvm", "Build Directory" );
$afiles.= `find utils/ -iname '*.a' -ls`;
- $afiles.= `find libs/ -iname '*.a' -ls`;
+ $afiles.= `find lib/ -iname '*.a' -ls`;
$afiles.= `find tools/ -iname '*.a' -ls`;
if($BUILDTYPE eq "release"){
$afiles.= `find Release/ -iname '*.a' -ls`;
@@ -688,7 +688,7 @@
$ofiles.= `find utils/ -iname '*.o' -ls`;
- $ofiles.= `find libs/ -iname '*.o' -ls`;
+ $ofiles.= `find lib/ -iname '*.o' -ls`;
$ofiles.= `find tools/ -iname '*.o' -ls`;
if($BUILDTYPE eq "release"){
$ofiles.= `find Release/ -iname '*.o' -ls`;
More information about the llvm-commits
mailing list