From c5ad42e82f4f67a69d4d54acf7b79f31f1b4cdc0 Mon Sep 17 00:00:00 2001 From: Tomas Hajny Date: Fri, 26 Oct 2012 20:52:53 +0000 Subject: [PATCH] * fix for missing space in emxbind parameters for resource files linking git-svn-id: trunk@22854 - --- compiler/systems/t_emx.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/systems/t_emx.pas b/compiler/systems/t_emx.pas index a8ea8f6d8a..85ca4839c2 100644 --- a/compiler/systems/t_emx.pas +++ b/compiler/systems/t_emx.pas @@ -483,7 +483,7 @@ begin AppTypeStr := '-f' else AppTypeStr := '-w'; if not (Current_module.ResourceFiles.Empty) then - RsrcStr := '-r ' + Current_module.ResourceFiles.GetFirst + RsrcStr := '-r ' + Current_module.ResourceFiles.GetFirst + ' ' else RsrcStr := ''; (* Only one resource file supported, discard everything else