From e097e17a15374de0b08ceedd048e34d5eccdedaa Mon Sep 17 00:00:00 2001 From: fros4943 Date: Wed, 5 Sep 2007 14:08:04 +0000 Subject: [PATCH] minor fix --- .../java/se/sics/cooja/dialogs/ExternalToolsDialog.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/cooja/java/se/sics/cooja/dialogs/ExternalToolsDialog.java b/tools/cooja/java/se/sics/cooja/dialogs/ExternalToolsDialog.java index 07bd8d7d0..5f6ec525a 100644 --- a/tools/cooja/java/se/sics/cooja/dialogs/ExternalToolsDialog.java +++ b/tools/cooja/java/se/sics/cooja/dialogs/ExternalToolsDialog.java @@ -26,7 +26,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * 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; @@ -113,9 +113,9 @@ public class ExternalToolsDialog extends JDialog { 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(" $(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(" $(MAPFILE) maps to the current map file being created (\"mtyp1.map\")")); - explanations.add(new JLabel(" $(ARFILE) maps to the current archive file being created (\"mtyp1.a\")")); + 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 (\"mtype1.map\")")); + explanations.add(new JLabel(" $(ARFILE) maps to the current archive file being created (\"mtype1.a\")")); explanations.setBorder(BorderFactory.createEmptyBorder(5, 5, 5, 5)); // MAIN PART