diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-09-26 16:17:22 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-09-26 16:17:22 -0700 |
| commit | 76e8dd248c561f4b1677d554a03856250f8eded6 (patch) | |
| tree | 15ca0084624d22e9bc660dba2bba605c13e25b97 | |
| parent | 389852b5c00456a7330664d61890c552097377e6 (diff) | |
| download | rust-76e8dd248c561f4b1677d554a03856250f8eded6.tar.gz rust-76e8dd248c561f4b1677d554a03856250f8eded6.zip | |
Fix configure script to use valgrind again
| -rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure index 10c4d7df32c..ec73a59f3fd 100755 --- a/configure +++ b/configure @@ -264,7 +264,7 @@ fi # Valgrind is only reliable on Linux. On Windows it doesn't work at all, and # on the Mac the dynamic linker causes Valgrind to emit a huge stream of # errors. -if [ $CFG_OSTYPE != Linux ] && [ $CFG_OSTYPE != Darwin ] +if [ $CFG_OSTYPE != unknown-linux-gnu ] && [ $CFG_OSTYPE != apple-darwin ] then CFG_BAD_VALGRIND=1 putvar CFG_BAD_VALGRIND |
