ports/devel/scons/files/patch-scanner-D.py
Pav Lucistnik bf708b7ae2 - Add patches to fix build of blender-devel. Other scons using ports
were tested to continue working.

PR:		ports/79064
Submitted by:	Michal Varga <varga@stonehenge.sk>
Approved by:	maintainer timeout (14 days)
Obtained from:	scons CVS
2005-04-04 21:57:07 +00:00

11 lines
499 B
Python

--- engine/SCons/Scanner/D.py.orig Wed Feb 16 03:12:10 2005
+++ engine/SCons/Scanner/D.py Tue Mar 1 22:00:50 2005
@@ -51,7 +51,5 @@
# translate dots (package separators) to slashes
inc = string.replace(include, '.', '/')
- i = SCons.Node.FS.find_file(inc + '.d',
- (source_dir,) + path,
- self.fs.File)
+ i = SCons.Node.FS.find_file(inc + '.d', (source_dir,) + path)
return i, include