make debug bootstrap work

git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@163585 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brett Leslie Porter 2005-03-16 23:17:38 +00:00
parent 1cc2abaaa4
commit e32b20b5cf
1 changed files with 6 additions and 1 deletions

View File

@ -69,6 +69,11 @@ public class JavacCompiler
args.add( getClasspathString( config.getClasspathEntries() ) );
if ( config.isDebug() )
{
args.add( "-g" );
}
Iterator it = compilerOptions.entrySet().iterator();
while ( it.hasNext() )
@ -184,4 +189,4 @@ public class JavacCompiler
{
return "Sun Javac Compiler";
}
}
}