Print this page
make: unifdef for NSE (undefined)

Split Close
Expand all
Collapse all
          --- old/usr/src/cmd/make/bin/nse_printdep.cc
          +++ new/usr/src/cmd/make/bin/nse_printdep.cc
↓ open down ↓ 159 lines elided ↑ open up ↑
 160  160          if ((target->dependency_printed) ||
 161  161              (target == force)) {
 162  162                  return;
 163  163          }
 164  164          target->dependency_printed = true;
 165  165  
 166  166          /* only print entries that are actually derived and are not leaf
 167  167           * files and are not the result of sccs get.
 168  168           */
 169  169          if (should_print_dep(line)) {
 170      -#ifdef NSE
 171      -                nse_check_no_deps_no_rule(target, line, line);
 172      -#endif
 173  170                  if ((report_dependencies_level == 2) ||
 174  171                      (report_dependencies_level == 4)) {
 175  172                          if (is_out_of_date(line)) {
 176  173                                  (void) printf("1 ");
 177  174                          } else {
 178  175                                  (void) printf("0 ");
 179  176                          }
 180  177                  }
 181  178                  print_filename(target);
 182  179                  (void) printf(":\t");
↓ open down ↓ 188 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX