﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
46	ilink map file name is wrong when multiple dots are in target name	Yuri Dario	bird	"When the target name has multiple dots (e.g. my.code.dll), ilink will generate a map file without proper extension (e.g. my.code).
Patch will force .map extension if map file name is not specified on command line.

{{{
Index: emxomfld.c
===================================================================
--- emxomfld.c	(revision 2508)
+++ emxomfld.c	(working copy)
@@ -1659,6 +1659,9 @@
     {
       t = xstrdup (output_fname);
       _remext (t);
+      //yd if module name has multiple dots, ilink will not add .map extension
+      //so I'll force it here
+      strcat( t, "".map"");
       map_fname = t;
     }

}}}
"	defect	closed	normal	libc-0.6.1	emx	0.6	normal	fixed		
