bug 2087: Waf fails to build ns-3 if the path contains accented characters
authorTom Henderson <tomh@tomh.org>
Fri, 03 Apr 2015 15:13:32 -0700
changeset 11277 1d9d2a348289
parent 11276 fe6203fec225
child 11278 4213cff834ff
bug 2087: Waf fails to build ns-3 if the path contains accented characters
src/wscript
--- a/src/wscript	Fri Apr 03 22:19:21 2015 +0200
+++ b/src/wscript	Fri Apr 03 15:13:32 2015 -0700
@@ -492,7 +492,7 @@
             up = m.update
             up(self.__class__.__name__.encode())
             for x in self.inputs + self.outputs:
-                up(x.abspath().encode())
+                up(x.abspath())
             up(self.mode)
             if self.mode == 'remove':
                 up(self.header_to_remove.abspath().encode())
@@ -584,7 +584,7 @@
             up = m.update
             up(self.__class__.__name__.encode())
             for x in self.inputs + self.outputs:
-                up(x.abspath().encode())
+                up(x.abspath())
             up(self.mode)
             if self.mode == 'remove':
                 up(self.header_to_remove.abspath().encode())