yitzle | 1 Jun 2007 05:57
Picon

Re: scripting and cygwin

I fail to follow the logic behind that statement.
You suggested that "those with IQ less than 80 have responded so far..."
I noted that by your own reply, you are implying that you believe your
IQ to be below 80.
Your reply 1) is agreeing with what I said ("yes, ..."), yet it seems
to be agreeing with something other than what I said.

PS There ought to be a comma between "yes" and "you".

On 5/31/07, John <jhy001 <at> earthlink.net> wrote:
> yes you are stupid.
>
> yitzle wrote:
> > On 5/31/07, John <jhy001 <at> earthlink.net> wrote:
> >> hee hee,
> >>
> >> those with IQ less than 80 have responded so far...
> >> on and on it goes...
> >>
> >> :-)
> >>
> >
> > Rather self damming reply, don't you think?
> >
>
yitzle | 1 Jun 2007 06:03
Picon

Re: scripting and cygwin

I apologize and would like to recall my last message. It sort of
"leaked" (I entered the wrong email address) from the CygWin mailing
list.
query | 1 Jun 2007 10:36
Favicon

classpath issue in <javac> task

I have created classpath in a build file and using it in the same build file for compiling java source
files.&nbsp;When I checked the log file I found that classfile destination folder(absolute path of
class.dest) was also included in the 
classpath though I had not specified in eg.class.pathAs a result, it creating more class files.I suspect
that this is due to that extra path in classpath.
Is there any way to exclude that classpath while compiling java source files?
Log file:
[javac] Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation arguments:&nbsp;&nbsp;&nbsp;
[javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-classpath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles;C:\\PROGRA~1\\jdk1.5;E:\\samplebuild\\eg\\eg1\\eg.jar\'&nbsp;&nbsp;&nbsp;
[javac] \'-sourcepath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\sourcefiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-g:none\'&nbsp;&nbsp;&nbsp; [javac] &nbsp;&nbsp;&nbsp; [javac] The \' characters around the
executable and arguments are&nbsp;&nbsp;&nbsp; [javac] not part of the command.&nbsp;&nbsp;&nbsp;
[javac] Files to be compiled:
Build file:
&lt;javac srcdir=\"${src.dest}\" destdir=\"${class.dest}\"
includeAntRuntime=\"no\"&gt;&nbsp;&lt;include name=\"*.java\"/&gt;&nbsp;&lt;classpath refid=\"eg.class.path\"/&gt;&lt;/javac&gt;
query | 1 Jun 2007 10:40
Favicon

Re :Re: Re :Re: Building Dependent targets

Thanks for reformatting the mail.I tried with &lt;update&gt; task. It works better.On Mon, 28 May 2007
19:32:21 -0400 \"Ant Users List\" wroteIt was a bit hard to read your email. Please set your email to
sendonly text formated emails to this list. Otherwise, they get munged andit\'s hard to see what you\'re
doing. I\'ve reformatted your email belowto help make it clear what you were showing as an example:In your
example, you use the \"outofdate\" task to simply call an anttask. Why not use the standard \"uptodate\"
task, so you don\'t dependupon the antcontrib target?The main problem is that you call the create-jar
task with outofdate,but the create-jar task depends upon the compile task, so that getscalled anyway. I
think what you want to do is create only the jars andnot do the compile. (Is this correct?). To do that,
remove thedependency on the compile task for the create-jars task.=
 ========From: search2006 <at> rediffmail. com queryTo: user <at> ant. apache. orgDate: Mon, 28 May 2
 007 07:50:33 -0400Subject: Re :Re: Building Dependent targetsTo avoid rebuilding of targets if they
occur as dependent targetsfor many targets, I tried using task. My requirementis that I am having
different targets in all build files for copyingsource, compiling java files, and creating jar files.
Each buildfile will be having all the above mentioned targets. After extractingthe source files, it will
be checking for the outdated target jarfile. Once it finds that target is outofdate, \"target.old\"
propertywill be set and will be proceed with creating jar file. If sourcefiles are uptodate with target
file,\"target. old\" will be false andshouldn\'t run target \"compile\" and \"create-jar\".If
\"target.old\" is \"false\", though it will not create jar file,it is be still checking each file at the
task level. But I wantthe check to be done at target level and proceed with creating jarfil
 e only if \"target.old\" is set. As I am having so many sourcefiles, it is taking lot of t
 ime for building.Is there any flaws in the below sample build file?Sample build
file-includes=\"**/*.*\"/&gt;[...]--David
Weintraubqazwart <at> gmail.com---------------------------------------------------------------------To
unsubscribe, e-mail: user-unsubscribe <at> ant.apache.orgFor additional commands, e-mail: user-help <at> ant.apache.org
query | 1 Jun 2007 12:01
Favicon

Classpath issue in <javac> task

I have created classpath in a build file and using it in the same build file for compiling java source
files.&nbsp;When I checked the log file I found that classfile destination folder(absolute path of
class.dest) was also included in the classpath though I had not specified it in eg.class.pathAs a result,
it is creating more class files.I suspect that this is due to that extra path in classpath.
Is there any way to exclude that classpath while compiling java source files?
The extra class files that are generated are required by eg2.xml. But they are already created while
building eg1.jar and eg1.jar is spcified in classpath. But still while compiling eg2 source files these
class files are getting generated again. Why is it so?
Log file:
[javac] Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation arguments:&nbsp;&nbsp;&nbsp;
[javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-classpath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles;C:\\PROGRA~1\\jdk1.5;E:\\samplebuild\\eg\\eg1\\eg.jar\'&nbsp;&nbsp;&nbsp;
[javac] \'-sourcepath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\sourcefiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-g:none\'&nbsp;&nbsp;&nbsp; [javac] &nbsp;&nbsp;&nbsp; [javac] The \' characters around the
executable and arguments are&nbsp;&nbsp;&nbsp; [javac] not part of the command.&nbsp;&nbsp;&nbsp;
[javac] Files to be compiled:&nbsp;.&nbsp;.&nbsp;.
Build file:
&lt;javac srcdir=\"${src.dest}\" destdir=\"${class.dest}\"
includeAntRuntime=\"no\"&gt;&nbsp;&lt;include name=\"*.java\"/&gt;&nbsp;&lt;classpath refid=\"eg.class.path\"/&gt;&lt;/javac&gt;
David Weintraub | 1 Jun 2007 12:55
Picon
Gravatar

Re: classpath issue in <javac> task

You didn't include a code snippet, so it is hard to see what you did.

There is a <classpath> nested element in the <javac> task where you
can specify a classpath either through a "fileset" or via a reference.
You can also use the "classpath=" parameter to specify the classpath.

However, if you do not specify either, it takes the value of classpath
via your environment.

How do you specify classpath? Can you print out the classpath right
before you call the <javac> task to verify that it is set the way you
want?

If you're setting claspath via reference, you can convert the
reference to a parameter and then print the parameter.

<parameter name="classpath.param" refid="classpath.ref"/>
<echo message="My classpath is &quot;${classpath.param}&quot;"/>
<javac ...>

On 1 Jun 2007 08:36:22 -0000, query <search2006 <at> rediffmail.com> wrote:
> I have created classpath in a build file and using it in the same build file for compiling java source
files.&nbsp;When I checked the log file I found that classfile destination folder(absolute path of
class.dest) was also included in the
> classpath though I had not specified in eg.class.pathAs a result, it creating more class files.I suspect
that this is due to that extra path in classpath.
> Is there any way to exclude that classpath while compiling java source files?
> Log file:
> [javac] Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation
arguments:&nbsp;&nbsp;&nbsp; [javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
(Continue reading)

query | 1 Jun 2007 14:37
Favicon

Re :Re: classpath issue in <javac> task

Below is the sample log file and build fileLog file:
[javac] Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation arguments:&nbsp;&nbsp;&nbsp;
[javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-classpath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles;C:\\PROGRA~1\\jdk1.5;E:\\samplebuild\\eg\\eg1\\eg.jar\'&nbsp;&nbsp;&nbsp;
[javac] \'-sourcepath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\sourcefiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-g:none\'&nbsp;&nbsp;&nbsp; [javac] &nbsp;&nbsp;&nbsp; [javac] The \' characters around the
executable and arguments are&nbsp;&nbsp;&nbsp; [javac] not part of the command.&nbsp;&nbsp;&nbsp;
[javac] Files to be compiled:Build file:
&lt;javac srcdir=\"${src.dest}\" destdir=\"${class.dest}\"
includeAntRuntime=\"no\"&gt;&nbsp;&lt;include name=\"*.java\"/&gt;&nbsp;&lt;classpath
refid=\"eg.class.path\"/&gt;&lt;/javac&gt;On Fri, 1 Jun 2007 06:55:22 -0400 \"Ant Users List\"
wroteYou didn\'t include a code snippet, so it is hard to see what you did.There is a nested element in the
task where youcan specify a classpath either through a \"fileset\" or via a reference.You can also use the
\"classpath=\" parameter to specify the classpath.However, if you do not specify either, it takes the
value of classpathvia your environment.How do you specify classpath? Can you print out the classpath
rightbefore you call the task to verify that it is set the way youwant?If you\'re setting claspath via
reference, you can convert thereference to a parameter and then print the parameter.On 1 Jun 2007
08:36:22 -0000, query wrote:&gt; I have c
 reated classpath in a build file and using it in the same build file for compiling java so
 urce files.&nbsp;When I checked the log file I found that classfile destination folder(absolute path of
class.dest) was also included in the&gt; classpath though I had not specified in eg.class.pathAs a
result, it creating more class files.I suspect that this is due to that extra path in classpath.&gt; Is
there any way to exclude that classpath while compiling java source files?&gt; Log file:&gt; [javac]
Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation arguments:&nbsp;&nbsp;&nbsp;
[javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-classpath\'&nbsp;&nbsp;&nbsp; [javac]
(Continue reading)

query | 1 Jun 2007 14:43
Favicon

Issue with recursive source files in <javac> task

While compiling java source files, it will scan recursively for the source files in a given directory. If we
don\'t want to compile subfolders, we have to specifically mention them by using &lt;exclude&gt; task.
But as the numbers of subfolders are large, it will be difficult to mention them exclusively.Is there any
attribute or element in &lt;javac&gt; task to compile only the files in a folder not in thesubdirectories?
Saurabh Dave | 1 Jun 2007 14:41

RE: Re: classpath issue in <javac> task

I you want to some additional classpath In your javac reference then you can
use
Step1: first make the classpath reference
<path id="build.classpath">
    	<pathelement location="${lib.dir}/your_class1.jar"/>   
    	<pathelement location="${lib.dir}/your_class2.jar"/>
	<pathelement location="${lib.dir}/your_class3.jar"/>

 </path
Then use it with javac reference
<target name="compile">
<javac srcdir="your_src_dir" destdir="your_dest_dir_for_classes" 
classpathref="build.classpath" />
</target>
Mail me if this works....
Regards
Saurabh

-----Original Message-----
From: query [mailto:search2006 <at> rediffmail.com] 
Sent: Friday, June 01, 2007 6:08 PM
To: user <at> ant.apache.org
Subject: Re :Re: classpath issue in <javac> task

Below is the sample log file and build fileLog file:
[javac] Using modern compiler&nbsp;&nbsp;&nbsp; [javac] Compilation
arguments:&nbsp;&nbsp;&nbsp; [javac] \'-d\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles\'&nbsp;&nbsp;&nbsp; [javac]
\'-classpath\'&nbsp;&nbsp;&nbsp; [javac]
\'E:\\samplebuild\\eg\\eg2\\classfiles;C:\\PROGRA~1\\jdk1.5;E:\\samplebuild\
(Continue reading)

query | 1 Jun 2007 14:49
Favicon

Re :Re: classpath issue in <javac> task

Log file and build file sample is given below.Log file:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\
[javac] Using modern
compiler&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] Compilation arguments:&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs
 p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs

p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
&nbsp;\\&nbsp;&nbsp;&nbsp; [javac] \'-d\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp; [javac] \'E:\\samplebuild\\eg\\eg2\\
 classfiles\'
\\&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] \'-classpath\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&
 nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&

nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] \'E:\\samplebuild\\eg\\eg2\\classfiles;C:\\PROGRA~1\\jdk1.5;E:\\samplebuild\\eg\\eg1\\eg.jar\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
 sp;\\&nbsp;&nbsp;&nbsp; [javac]
\'-sourcepath\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] \'E:\\samplebuild\\eg\\eg2\\sourcefiles\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n

bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] \'-g:none\'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb
 sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp; 

[javac]&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;\\&nbsp;&nbsp;&nbsp;
[javac] The \' characters around the executable and arguments are&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n
 bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n

(Continue reading)


Gmane