commit | 8b5d293f6e1f7803f930d8c9cebef72db0517dd0 | [log] [tgz] |
---|---|---|
author | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 21:25:41 2009 +0000 |
committer | fabbott@google.com <fabbott@google.com@8db76d5a-ed1c-0410-87a9-c151d255dfc7> | Tue Jan 20 21:25:41 2009 +0000 |
tree | fb01c99f9d25dbe8ff14378ea4290d60a27b218d | |
parent | 4f57bc2d9aad5b109d0c2885c65764ec739812be [diff] |
Merged a fix to tmpdir creation, so the gwt-tmp layer can't create permission errors Review by: scottb Merge from: 1.6@4498 git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@4499 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/dev/core/src/com/google/gwt/util/tools/Utility.java b/dev/core/src/com/google/gwt/util/tools/Utility.java index ed1d59c..4ed188b 100644 --- a/dev/core/src/com/google/gwt/util/tools/Utility.java +++ b/dev/core/src/com/google/gwt/util/tools/Utility.java
@@ -253,7 +253,7 @@ public static File makeTemporaryDirectory(File baseDir, String prefix) throws IOException { if (baseDir == null) { - baseDir = new File(System.getProperty("java.io.tmpdir"), GWT_TMP_DIR); + baseDir = new File(System.getProperty("java.io.tmpdir")); } baseDir.mkdirs();