src/Pure/System/build.scala
changeset 50203 00d8ad713e32
parent 49951 119440fe1d5c
child 50204 daeb1674fb91
--- a/src/Pure/System/build.scala	Sun Nov 25 19:55:42 2012 +0100
+++ b/src/Pure/System/build.scala	Sun Nov 25 20:17:04 2012 +0100
@@ -522,7 +522,7 @@
   private def read_stamps(path: Path): Option[(String, String, String)] =
     if (path.is_file) {
       val stream = new GZIPInputStream (new BufferedInputStream(new FileInputStream(path.file)))
-      val reader = new BufferedReader(new InputStreamReader(stream, Standard_System.charset))
+      val reader = new BufferedReader(new InputStreamReader(stream, UTF8.charset))
       val (s, h1, h2) =
         try { (reader.readLine, reader.readLine, reader.readLine) }
         finally { reader.close }