]> git.lyx.org Git - lyx.git/blobdiff - po/lyx_pot.py
Fix bug 2466 by Stefan Schimanski:
[lyx.git] / po / lyx_pot.py
index 2dd883aec5fd0fc5e45fd8df6b26ee59c9cae824..f247279b446a5b47ee82f6cfd09b0c1516f6a3de 100755 (executable)
@@ -25,7 +25,10 @@ def relativePath(path, base):
     path2 = os.path.normpath(os.path.realpath(base)).split(os.sep)
     if path1[:len(path2)] != path2:
         print "Path %s is not under top source directory" % path
-    return os.path.join(*path1[len(path2):])
+    path3 = os.path.join(*path1[len(path2):]);
+    # replace all \ by / such that we get the same comments on Windows and *nix
+    path3 = path3.replace('\\', '/')
+    return path3
 
 
 def ui_l10n(input_files, output, base):