This is a known issue. Have you done a bringover lately? Information from the mail_msg file is a start, but it normally isn't enough to help you solve your problem. Your log file will help much more, but they are too big to use vi. Here's a technique I use:
1) Review mail_msg file for good keywords to search for. In this case "remade" is a good thing to look for in the log. 2) Find lines with issues in nightly.log file: bash-3.2$ egrep -n remade nightly.log 4587:dmake: Warning: Target `install' not remade because of errors 32329:dmake: Warning: Target `install' not remade because of errors 82754:dmake: Warning: Target `install' not remade because of errors 228077:dmake: Warning: Target `install' not remade because of errors 229408:dmake: Warning: Target `install' not remade because of errors 3) List problem areas in log using the "more" command starting at line numbers 10 or so lines above the issue. For example, in this case I choose the start at 32320 which is above 32329 shown in the egrep list above. bash-3.2$ more +32320 nightly.log Cheers, Jim
