Ignore:
Timestamp:
Jun 18, 2012, 1:29:07 AM (13 years ago)
Author:
bird
Message:

Fixed the broken $(deps*).

File:
1 edited

Legend:

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

    r2592 r2594  
    30043004/* Implements $^ and $+.
    30053005
    3006    The first is somes with with FUNCNAME 'deps', the second as 'deps-all'.
     3006   The first comes with FUNCNAME 'deps', the second as 'deps-all'.
    30073007
    30083008   If no second argument is given, or if it's empty, or if it's zero,
     
    30403040  if (file)
    30413041    {
    3042       struct dep *deps = funcname[4] != '\0' && file->org_deps
    3043                        ? file->org_deps : file->deps;
     3042      struct dep *deps;
    30443043      struct dep *d;
     3044      if (funcname[4] == '\0')
     3045        {
     3046          deps = file->deps_no_dupes;
     3047          if (!deps && file->deps)
     3048            deps = file->deps = create_uniqute_deps_chain (file->deps);
     3049        }
     3050      else
     3051        deps = file->deps;
    30453052
    30463053      if (   file->double_colon
Note: See TracChangeset for help on using the changeset viewer.