summaryrefslogtreecommitdiffstats
path: root/x11-toolkits/py-gtk2/files
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-16 02:20:46 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2006-06-16 02:20:46 +0800
commit86cb65fbbc1db966e7a414ef5a293e6d3b90f997 (patch)
treea890063987ebb1345672e22f6a0ac637e03a5b94 /x11-toolkits/py-gtk2/files
parent0403d6b2de26a6a675cca73d922dde8cc0efa15a (diff)
downloadmarcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.gz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.bz2
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.lz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.xz
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.tar.zst
marcuscom-ports-86cb65fbbc1db966e7a414ef5a293e6d3b90f997.zip
Fix a typo that caused dependents to fail to build.
Obtained from: pygtk CVS git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@6450 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'x11-toolkits/py-gtk2/files')
-rw-r--r--x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py b/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py
new file mode 100644
index 000000000..c787e2385
--- /dev/null
+++ b/x11-toolkits/py-gtk2/files/patch-codegen_defsparser.py
@@ -0,0 +1,11 @@
+--- codegen/defsparser.py.orig Thu Jun 15 14:13:39 2006
++++ codegen/defsparser.py Thu Jun 15 14:13:50 2006
+@@ -20,7 +20,7 @@ class IncludeParser(scmexpr.Parser):
+ else:
+ inc_path = [os.path.dirname(self.filename)] + include_path
+ for filename in [os.path.join(path_entry, input_filename)
+- for path_entry in include_path]:
++ for path_entry in inc_path]:
+ if not os.path.exists(filename):
+ continue
+ # set self.filename to the include name, to handle recursive includes