Fix for r3669, because our build machine (and untold others in the wider
world) have an old copy of svnversion, which demands a workspace-directory
argument.

TBR: scottb



git-svn-id: https://google-web-toolkit.googlecode.com/svn/trunk@3670 8db76d5a-ed1c-0410-87a9-c151d255dfc7
diff --git a/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java b/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
index 13530ed..7156cf0 100644
--- a/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
+++ b/build-tools/ant-gwt/src/com/google/gwt/ant/taskdefs/SvnInfo.java
@@ -123,7 +123,7 @@
   private String getSvnVersion(File workdir) {
     String line = null;
 
-    LineNumberReader svnout = runCommand(workdir, "svnversion");
+    LineNumberReader svnout = runCommand(workdir, "svnversion", ".");
     try {
       line = svnout.readLine();
     } catch (IOException e) {