Fix x86.rs triple for linux.

This commit is contained in:
Graydon Hoare 2011-05-05 17:20:27 -07:00
parent 9d7fc21967
commit 9e3b096d98

View file

@ -353,7 +353,7 @@ fn get_target_triple() -> str {
if (_str.eq(target_os(), "win32")) {
ret "i686-pc-mingw32";
}
ret "i686-pc-linux-gnu";
ret "i686-unknown-linux-gnu";
}