Index: install.cc =================================================================== RCS file: /cvs/cygwin-apps/setup/install.cc,v retrieving revision 2.57 diff -u -p -r2.57 install.cc --- install.cc 12 Mar 2003 22:15:25 -0000 2.57 +++ install.cc 13 Mar 2003 22:14:07 -0000 @@ -291,7 +291,15 @@ install_one_source (packagemeta & pkgm, GetLastError ()); ++errors; } - + else + { + log (LOG_TIMESTAMP, + "Scheduled reboot replacement of file %s with %s", + cygpath (String ("/") + fn).cstr_oneuse(), + cygpath (String ("/") + fn + + ".new").cstr_oneuse()); + rebootneeded = true; + } } } break; @@ -315,7 +323,13 @@ install_one_source (packagemeta & pkgm, ++errors; } else - rebootneeded = true; + { + log (LOG_TIMESTAMP, + "Scheduled reboot replacement of file %s with %s", + cygpath (String ("/") + fn).cstr_oneuse(), + cygpath (String ("/") + fn + ".new").cstr_oneuse()); + rebootneeded = true; + } break; } }