Revision: 6293 Author: [email protected] Date: Fri Oct 2 18:14:10 2009 Log: Remove the spurious directories like Hello/linux, Hello/windows, Hello/mac in the distribution. Ensure that the build files get generated in the correct locations.
Patch by: amitmanjhi Review by: rjrjr (TBR) http://code.google.com/p/google-web-toolkit/source/detail?r=6293 Modified: /branches/farewellSwt/samples/common.ant.xml ======================================= --- /branches/farewellSwt/samples/common.ant.xml Sun Sep 20 12:33:31 2009 +++ /branches/farewellSwt/samples/common.ant.xml Fri Oct 2 18:14:10 2009 @@ -79,17 +79,17 @@ <outofdate> <sourcefiles /> <targetfiles> - <pathelement location="${samples.scripts}/@{platform}/${sample.upper}/build.xml" /> + <pathelement location="${samples.scripts}/${sample.upper}/build.xml" /> </targetfiles> <sequential> - <mkdir dir="${samples.scripts}/@{platform}/${sample.upper}" /> + <mkdir dir="${samples.scripts}/${sample.upper}" /> <java classname="com.google.gwt.user.tools.WebAppCreator" classpath="${gwt.user.jar}:${gwt.dev.jar}" failonerror="true"> <!-- Relative path is important! Paths will be relative in final distro --> - <sysproperty key="gwt.devjar" value="../../gwt-d...@{platform}.jar" /> + <sysproperty key="gwt.devjar" value="../../gwt-dev.jar" /> <arg value="-XnoEclipse" /> <arg value="-overwrite" /> <arg value="-out" /> - <arg file="${samples.scripts}/@{platform}/${sample.upper}" /> + <arg file="${samples.scripts}/${sample.upper}" /> <arg value="com.google.gwt.sample.${sample.lower}.${sample.upper}" /> </java> </sequential> --~--~---------~--~----~------------~-------~--~----~ http://groups.google.com/group/Google-Web-Toolkit-Contributors -~----------~----~----~----~------~----~------~--~---
