diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-09-29 17:31:45 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-09-29 17:31:45 +0000 |
commit | 7a8efced36bb0d9d61fcaa4f31c1e6db4cfc4299 (patch) | |
tree | c1b7b1b95b92021e18385472f2649bb7f4477577 /utils/NewNightlyTest.pl | |
parent | ab4fa4f37748b82be7241516436109d8c02a4335 (diff) | |
download | external_llvm-7a8efced36bb0d9d61fcaa4f31c1e6db4cfc4299.zip external_llvm-7a8efced36bb0d9d61fcaa4f31c1e6db4cfc4299.tar.gz external_llvm-7a8efced36bb0d9d61fcaa4f31c1e6db4cfc4299.tar.bz2 |
Wrong directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30669 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'utils/NewNightlyTest.pl')
-rwxr-xr-x | utils/NewNightlyTest.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/NewNightlyTest.pl b/utils/NewNightlyTest.pl index 6032f71..6101b0a 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+Asserts/ -iname '*.a' -ls`; + $afiles.= `find Release/ -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+Asserts/ -iname '*.o' -ls`; + $ofiles.= `find Release/ -iname '*.o' -ls`; } elsif($BUILDTYPE eq "release-asserts") { $ofiles.= `find Release-Asserts/ -iname '*.o' -ls`; } else { |