summaryrefslogtreecommitdiffstats
path: root/buildtool.cpp
diff options
context:
space:
mode:
authorBob Jamison <ishmalius@gmail.com>2007-05-04 21:11:59 +0000
committerishmal <ishmal@users.sourceforge.net>2007-05-04 21:11:59 +0000
commit0313fe586828b5a48f629982c77023dea6073e52 (patch)
treed7ac51bfe1d1bd244aca610a3eda1995cc602029 /buildtool.cpp
parentRefactoring of previous changes (diff)
downloadinkscape-0313fe586828b5a48f629982c77023dea6073e52.tar.gz
inkscape-0313fe586828b5a48f629982c77023dea6073e52.zip
Fix native path on <fileset>-included objects
(bzr r2975)
Diffstat (limited to 'buildtool.cpp')
-rw-r--r--buildtool.cpp5
1 files 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 <stdio.h>
#include <fcntl.h>
@@ -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))