From: ishmal Date: Fri, 4 May 2007 21:11:59 +0000 (+0000) Subject: Fix native path on -included objects X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=f31d55f99905ea1ea70e3b887f5a16c1e8bd7eb3;p=inkscape.git Fix native path on -included objects --- 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))