blob: d0652484dbe404163db796507afa159c703b223d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Patch for bug 239101 by Matsuu Takuto, via Redmine issue 1337 (yes, really).
--- lib/mkmf.rb (revision 23101)
+++ lib/mkmf.rb (working copy)
@@ -1710,7 +1710,7 @@
mfile.print "\t@-$(RM) #{fseprepl[dest]}\n"
mfile.print "\t@-$(RMDIRS) #{fseprepl[dir]}\n"
else
- mfile.print "#{dest}: #{f}\n"
+ mfile.print "#{dest}: #{dir} #{f}\n"
mfile.print "\t$(INSTALL_PROG) #{fseprepl[f]} #{fseprepl[dir]}\n"
if defined?($installed_list)
mfile.print "\t@echo #{dir}/#{File.basename(f)}>>$(INSTALLED_LIST)\n"
|