diff options
Diffstat (limited to 'manifest_xml.py')
-rw-r--r-- | manifest_xml.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/manifest_xml.py b/manifest_xml.py index 69105c9e..4f7bd498 100644 --- a/manifest_xml.py +++ b/manifest_xml.py | |||
@@ -1026,7 +1026,7 @@ class XmlManifest(object): | |||
1026 | # dest is relative to the top of the tree. | 1026 | # dest is relative to the top of the tree. |
1027 | # We only validate paths if we actually plan to process them. | 1027 | # We only validate paths if we actually plan to process them. |
1028 | self._ValidateFilePaths('copyfile', src, dest) | 1028 | self._ValidateFilePaths('copyfile', src, dest) |
1029 | project.AddCopyFile(src, dest, os.path.join(self.topdir, dest)) | 1029 | project.AddCopyFile(src, dest, self.topdir) |
1030 | 1030 | ||
1031 | def _ParseLinkFile(self, project, node): | 1031 | def _ParseLinkFile(self, project, node): |
1032 | src = self._reqatt(node, 'src') | 1032 | src = self._reqatt(node, 'src') |
@@ -1036,7 +1036,7 @@ class XmlManifest(object): | |||
1036 | # dest is relative to the top of the tree. | 1036 | # dest is relative to the top of the tree. |
1037 | # We only validate paths if we actually plan to process them. | 1037 | # We only validate paths if we actually plan to process them. |
1038 | self._ValidateFilePaths('linkfile', src, dest) | 1038 | self._ValidateFilePaths('linkfile', src, dest) |
1039 | project.AddLinkFile(src, dest, os.path.join(self.topdir, dest)) | 1039 | project.AddLinkFile(src, dest, self.topdir) |
1040 | 1040 | ||
1041 | def _ParseAnnotation(self, project, node): | 1041 | def _ParseAnnotation(self, project, node): |
1042 | name = self._reqatt(node, 'name') | 1042 | name = self._reqatt(node, 'name') |