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 678-684 Link Here
678
		script.printComment(Messages.build_compilerSetting);
678
		script.printComment(Messages.build_compilerSetting);
679
		script.printProperty(PROPERTY_JAVAC_FAIL_ON_ERROR, "false"); //$NON-NLS-1$
679
		script.printProperty(PROPERTY_JAVAC_FAIL_ON_ERROR, "false"); //$NON-NLS-1$
680
		script.printProperty(PROPERTY_JAVAC_DEBUG_INFO, "on"); //$NON-NLS-1$
680
		script.printProperty(PROPERTY_JAVAC_DEBUG_INFO, "on"); //$NON-NLS-1$
681
		script.printProperty(PROPERTY_JAVAC_VERBOSE, "true"); //$NON-NLS-1$
681
		script.printProperty(PROPERTY_JAVAC_VERBOSE, "false"); //$NON-NLS-1$
682
		script.printProperty(PROPERTY_JAVAC_COMPILERARG, ""); //$NON-NLS-1$  
682
		script.printProperty(PROPERTY_JAVAC_COMPILERARG, ""); //$NON-NLS-1$  
683
683
684
		if (javacSource == null)
684
		if (javacSource == null)
(-)src/org/eclipse/pde/internal/build/ant/JavacTask.java (+3 lines)
Lines 75-80 Link Here
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
		}
77
		}
78
		if (destdir != null) {
79
			script.println("<compilerarg line=\"-log " + destdir + ".log\" compiler=\"" + IXMLConstants.JDT_COMPILER_ADAPTER + "\"/>"); //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
80
		}
78
		script.indent--;
81
		script.indent--;
79
		script.printEndTag("javac"); //$NON-NLS-1$
82
		script.printEndTag("javac"); //$NON-NLS-1$
80
	}
83
	}

Return to bug 131377