minor fix
This commit is contained in:
parent
d5d6e5d48c
commit
e097e17a15
|
@ -26,7 +26,7 @@
|
||||||
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
||||||
* SUCH DAMAGE.
|
* SUCH DAMAGE.
|
||||||
*
|
*
|
||||||
* $Id: ExternalToolsDialog.java,v 1.4 2007/09/05 14:01:56 fros4943 Exp $
|
* $Id: ExternalToolsDialog.java,v 1.5 2007/09/05 14:08:04 fros4943 Exp $
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package se.sics.cooja.dialogs;
|
package se.sics.cooja.dialogs;
|
||||||
|
@ -113,9 +113,9 @@ public class ExternalToolsDialog extends JDialog {
|
||||||
Box explanations = Box.createVerticalBox();
|
Box explanations = Box.createVerticalBox();
|
||||||
explanations.add(new JLabel("Special variables used in COMPILER_ARGS, LINK_COMMAND_1 and LINK_COMMAND_2:"));
|
explanations.add(new JLabel("Special variables used in COMPILER_ARGS, LINK_COMMAND_1 and LINK_COMMAND_2:"));
|
||||||
explanations.add(new JLabel(" $(JAVA_HOME) maps to the environment Java home: " + System.getenv().get("JAVA_HOME").replace(File.separatorChar, '/')));
|
explanations.add(new JLabel(" $(JAVA_HOME) maps to the environment Java home: " + System.getenv().get("JAVA_HOME").replace(File.separatorChar, '/')));
|
||||||
explanations.add(new JLabel(" $(LIBFILE) maps to the current library file being created (\"mtyp1.library\")"));
|
explanations.add(new JLabel(" $(LIBFILE) maps to the current library file being created (\"mtype1.library\")"));
|
||||||
explanations.add(new JLabel(" $(MAPFILE) maps to the current map file being created (\"mtyp1.map\")"));
|
explanations.add(new JLabel(" $(MAPFILE) maps to the current map file being created (\"mtype1.map\")"));
|
||||||
explanations.add(new JLabel(" $(ARFILE) maps to the current archive file being created (\"mtyp1.a\")"));
|
explanations.add(new JLabel(" $(ARFILE) maps to the current archive file being created (\"mtype1.a\")"));
|
||||||
explanations.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
|
explanations.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5));
|
||||||
|
|
||||||
// MAIN PART
|
// MAIN PART
|
||||||
|
|
Loading…
Reference in a new issue