From f31d55f99905ea1ea70e3b887f5a16c1e8bd7eb3 Mon Sep 17 00:00:00 2001 From: ishmal Date: Fri, 4 May 2007 21:11:59 +0000 Subject: [PATCH] Fix native path on -included objects --- buildtool.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/buildtool.cpp b/buildtool.cpp index 6d1dd25a8..39ae5be6e 100644 --- a/buildtool.cpp +++ b/buildtool.cpp @@ -38,7 +38,7 @@ * */ -#define BUILDTOOL_VERSION "BuildTool v0.6.12, 2007 Bob Jamison" +#define BUILDTOOL_VERSION "BuildTool v0.6.13, 2007 Bob Jamison" #include #include @@ -6561,7 +6561,8 @@ public: } obj.append(fileSet[i]); String fullObj = parent.resolve(obj); - cmd.append(fullObj); + String nativeFullObj = getNativePath(fullObj); + cmd.append(nativeFullObj); //trace("link: tgt:%s obj:%s", fullTarget.c_str(), // fullObj.c_str()); if (isNewerThan(fullObj, fullTarget)) -- 2.30.2