[Pkg-asciidoc-commits] r46 - trunk/debian/patches
formorer at alioth.debian.org
formorer at alioth.debian.org
Tue Jan 13 06:01:13 UTC 2009
Author: formorer
Date: 2009-01-13 06:01:13 +0000 (Tue, 13 Jan 2009)
New Revision: 46
Modified:
trunk/debian/patches/normpath-not-realpath.patch
Log:
Update normpath patch*
Modified: trunk/debian/patches/normpath-not-realpath.patch
===================================================================
--- trunk/debian/patches/normpath-not-realpath.patch 2009-01-13 05:57:23 UTC (rev 45)
+++ trunk/debian/patches/normpath-not-realpath.patch 2009-01-13 06:01:13 UTC (rev 46)
@@ -1,9 +1,10 @@
---- a/asciidoc.py
-+++ b/asciidoc.py
-@@ -125,7 +125,7 @@
+diff -urNad asciidoc-8.3.3~/asciidoc.py asciidoc-8.3.3/asciidoc.py
+--- asciidoc-8.3.3~/asciidoc.py 2009-01-02 00:33:52.000000000 +0100
++++ asciidoc-8.3.3/asciidoc.py 2009-01-13 06:59:40.000000000 +0100
+@@ -149,7 +149,7 @@
else:
assert os.path.isdir(directory)
- directory = os.path.abspath(directory)
+ directory = os.path.realpath(directory)
- fname = os.path.realpath(fname)
+ fname = os.path.normpath(fname)
return os.path.commonprefix((directory, fname)) == directory
More information about the Pkg-asciidoc-commits
mailing list