Browse Source

* fixed quoting of the "description" wlink option on Windows

git-svn-id: trunk@42659 -
nickysn 6 years ago
parent
commit
ae953214ee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      compiler/systems/t_win16.pas

+ 1 - 1
compiler/systems/t_win16.pas

@@ -250,7 +250,7 @@ begin
 
   LinkRes.Add('option quiet');
 
-  LinkRes.Add('option description '+maybequoted(description));
+  LinkRes.Add('option description '+maybequoted_for_script(description,script_unix));
 
   if target_dbg.id in [dbg_dwarf2,dbg_dwarf3,dbg_dwarf4] then
     LinkRes.Add('debug dwarf')