One of the directories we were searching in for .o and .a files was wrong. We now...
authorPatrick Jenkins <pjenkins@apple.com>
Thu, 3 Aug 2006 16:28:58 +0000 (16:28 +0000)
committerPatrick Jenkins <pjenkins@apple.com>
Thu, 3 Aug 2006 16:28:58 +0000 (16:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@29496 91177308-0d34-0410-b5e6-96231b3b80d8

utils/NewNightlyTest.pl

index 05bb5218bedc837a131310a8828bfcc85e819cf9..8f7a5ee13b7785328ca685cb5d9031e6faea1fc4 100755 (executable)
@@ -677,7 +677,7 @@ if(!$BuildError){
     }
        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 @@ if(!$BuildError){
        
        
        $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`;