From 46e10bfde89cd4489e201fb4a6ddee5715d56ca8 Mon Sep 17 00:00:00 2001 From: Russel Winder Date: Sun, 30 Aug 2009 09:55:37 +0100 Subject: [PATCH] Rename the linker script template to align the naming and avoid confusion. --- containers/posix/test0/SConscript | 2 +- .../posix/test0/{linker.lds.in => test_exec_linker.lds.in} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename containers/posix/test0/{linker.lds.in => test_exec_linker.lds.in} (100%) diff --git a/containers/posix/test0/SConscript b/containers/posix/test0/SConscript index e20c65d..970eedb 100644 --- a/containers/posix/test0/SConscript +++ b/containers/posix/test0/SConscript @@ -38,7 +38,7 @@ def createTestExecS(target, source, env): testTaskEnvironment = environment.Clone() testTaskEnvironment.Append(CPPPATH=['#' + testTaskEnvironment['posixServicesDirectory'] +'/libposix/include/posix']) -testExecLinkerScript = Command('#build/' + testTaskEnvironment['posixServicesDirectory'] +'/' + taskName + '/test_exec_linker.lds', ['linker.lds.in', testTaskEnvironment['physicalBaseLinkerScript']], createTestExecLinkerScript) +testExecLinkerScript = Command('#build/' + testTaskEnvironment['posixServicesDirectory'] +'/' + taskName + '/test_exec_linker.lds', ['test_exec_linker.lds.in', testTaskEnvironment['physicalBaseLinkerScript']], createTestExecLinkerScript) testExecEnvironment = testTaskEnvironment.Clone() testExecEnvironment.Append(LINKFLAGS=['-T' + testExecLinkerScript[0].path]) testExec = testExecEnvironment.Program('test_exec', Glob('src/test_exec/*.[cS]')) diff --git a/containers/posix/test0/linker.lds.in b/containers/posix/test0/test_exec_linker.lds.in similarity index 100% rename from containers/posix/test0/linker.lds.in rename to containers/posix/test0/test_exec_linker.lds.in