VirtualBox

Changeset 1821 in kBuild for trunk


Ignore:
Timestamp:
Oct 10, 2008 8:26:42 PM (16 years ago)
Author:
bird
Message:

kmk: incdep bug fix, dependencies was chopped of because they are now loaded after we define the rule.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kmk/read.c

    r1817 r1821  
    24272427                      if (f->cmds != 0)
    24282428                        {
     2429#ifndef KMK /* bugfix: Don't chop the chain! */
    24292430                          this->next = *d_ptr;
    24302431                          *d_ptr = this;
     2432#else   /* KMK */
     2433                          struct dep *this_last = this;
     2434                          while (this_last->next)
     2435                            this_last = this_last->next;
     2436                          this_last->next = *d_ptr;
     2437                          *d_ptr = this;
     2438#endif  /* KMK */
    24312439                        }
    24322440                      else
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette