From: Jim Laskey Date: Thu, 28 Sep 2006 18:45:11 +0000 (+0000) Subject: Fix search file for -release. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=ba9f0431f0e65b5d198af50438dd71a19f86584b;p=oota-llvm.git Fix search file for -release. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30647 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 6101b0ab79e..6032f71c706 100755 --- a/utils/NewNightlyTest.pl +++ b/utils/NewNightlyTest.pl @@ -660,7 +660,7 @@ if (!$BuildError) { $afiles.= `find lib/ -iname '*.a' -ls`; $afiles.= `find tools/ -iname '*.a' -ls`; if($BUILDTYPE eq "release"){ - $afiles.= `find Release/ -iname '*.a' -ls`; + $afiles.= `find Release+Asserts/ -iname '*.a' -ls`; } elsif($BUILDTYPE eq "release-asserts") { $afiles.= `find Release-Asserts/ -iname '*.a' -ls`; } else { @@ -671,7 +671,7 @@ if (!$BuildError) { $ofiles.= `find lib/ -iname '*.o' -ls`; $ofiles.= `find tools/ -iname '*.o' -ls`; if($BUILDTYPE eq "release"){ - $ofiles.= `find Release/ -iname '*.o' -ls`; + $ofiles.= `find Release+Asserts/ -iname '*.o' -ls`; } elsif($BUILDTYPE eq "release-asserts") { $ofiles.= `find Release-Asserts/ -iname '*.o' -ls`; } else {