Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 163332 Details for
Bug 293704
[Help Wanted] [Make Target View] Arguments of build command are lost in Create/Modify Dialogs when builder settings are used
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
add build arguments
293704_buildargs_lost-patch.txt (text/plain), 1.08 KB, created by
Axel Mueller
on 2010-03-29 17:48:09 EDT
(
hide
)
Description:
add build arguments
Filename:
MIME Type:
Creator:
Axel Mueller
Created:
2010-03-29 17:48:09 EDT
Size:
1.08 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.cdt.make.ui >Index: src/org/eclipse/cdt/make/ui/dialogs/MakeTargetDialog.java >=================================================================== >RCS file: /cvsroot/tools/org.eclipse.cdt/all/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/dialogs/MakeTargetDialog.java,v >retrieving revision 1.29 >diff -u -r1.29 MakeTargetDialog.java >--- src/org/eclipse/cdt/make/ui/dialogs/MakeTargetDialog.java 8 Feb 2010 04:20:14 -0000 1.29 >+++ src/org/eclipse/cdt/make/ui/dialogs/MakeTargetDialog.java 29 Mar 2010 21:46:21 -0000 >@@ -384,12 +384,10 @@ > targetNameText.selectAll(); > if (buildCommand != null) { > StringBuffer cmd = new StringBuffer(buildCommand.toOSString()); >- if (!isDefaultCommand) { >- String args = buildArguments; >- if (args != null && !args.equals("")) { //$NON-NLS-1$ >- cmd.append(" "); //$NON-NLS-1$ >- cmd.append(args); >- } >+ String args = buildArguments; >+ if (args != null && !args.equals("")) { //$NON-NLS-1$ >+ cmd.append(" "); //$NON-NLS-1$ >+ cmd.append(args); > } > commandText.setText(cmd.toString()); > }
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 293704
:
163332
|
163784
|
164277