Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 131377 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/pde/internal/build/builder/ModelBuildScriptGenerator.java (-1 / +1 lines)
Lines 686-692 Link Here
686
		script.printComment(Messages.build_compilerSetting);
686
		script.printComment(Messages.build_compilerSetting);
687
		script.printProperty(PROPERTY_JAVAC_FAIL_ON_ERROR, "false"); //$NON-NLS-1$
687
		script.printProperty(PROPERTY_JAVAC_FAIL_ON_ERROR, "false"); //$NON-NLS-1$
688
		script.printProperty(PROPERTY_JAVAC_DEBUG_INFO, "on"); //$NON-NLS-1$
688
		script.printProperty(PROPERTY_JAVAC_DEBUG_INFO, "on"); //$NON-NLS-1$
689
		script.printProperty(PROPERTY_JAVAC_VERBOSE, "true"); //$NON-NLS-1$
689
		script.printProperty(PROPERTY_JAVAC_VERBOSE, "false"); //$NON-NLS-1$
690
		script.printProperty(PROPERTY_JAVAC_COMPILERARG, ""); //$NON-NLS-1$  
690
		script.printProperty(PROPERTY_JAVAC_COMPILERARG, ""); //$NON-NLS-1$  
691
691
692
		if (javacSource == null)
692
		if (javacSource == null)
(-)src/org/eclipse/pde/internal/build/ant/JavacTask.java (+3 lines)
Lines 74-79 Link Here
74
74
75
		if (compileArgsFile != null) {
75
		if (compileArgsFile != null) {
76
			script.println("<compilerarg value=\"@" + compileArgsFile + "\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
76
			script.println("<compilerarg value=\"@" + compileArgsFile + "\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
77
			if (destdir != null) {
78
				script.println("<compilerarg value=\"-log " + destdir + ".log\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
79
			}
77
		}
80
		}
78
		script.indent--;
81
		script.indent--;
79
		script.printEndTag("javac"); //$NON-NLS-1$
82
		script.printEndTag("javac"); //$NON-NLS-1$

Return to bug 131377