One of the directories we were searching in for .o and .a files was wrong. We now search /lib instead of /libs.

llvm-svn: 29496
This commit is contained in:
Patrick Jenkins 2006-08-03 16:28:58 +00:00
parent d615e20ef3
commit e6fde69b58
1 changed files with 2 additions and 2 deletions

View File

@ -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`;