Re: src/examples is empty?
Stefan Bodewig <[email protected]>
| Newsgroups | gmane.comp.java.mx4j.devel |
|---|---|
| Message-ID | <[email protected]> |
On Wed, 06 Dec 2006, Stefan Bodewig <[email protected]> wrote: > both src/examples and src/tools are empty in svn, is this OK? OK, I realized they have been moved but the build file had not been adapted, attached is a trivial patch that fixes it. I'm not sure whether the source directory for tests should also be changed ... Cheers Stefan ------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV _______________________________________________ Mx4j-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mx4j-devel
mx4j.patch
(application/octet-stream, 724 B)
--- ../../cvs/mx4j/build/build.xml 2006-11-24 02:40:54.000000000 -0800
+++ build.xml 2006-12-06 20:48:50.000000000 -0800
@@ -21,8 +21,8 @@
<property name="core.src.dir" value="${src.dir}/core"/>
<property name="test.src.dir" value="${src.dir}/test"/>
<property name="docs.src.dir" value="${src.dir}/docs"/>
- <property name="tools.src.dir" value="${src.dir}/tools"/>
- <property name="examples.src.dir" value="${src.dir}/examples"/>
+ <property name="tools.src.dir" value="tools/src/main/java"/>
+ <property name="examples.src.dir" value="examples/src/main/java"/>
<property name="classes.dir" value="${basedir}/classes"/>
<property name="core.classes.dir" value="${classes.dir}/core"/>