mirror of
https://git.freebsd.org/ports.git
synced 2025-06-27 07:30:32 -04:00
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
11 lines
499 B
Python
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
|