Changeset 1948 for trunk/src/kmk/function.c
- Timestamp:
- Oct 26, 2008, 5:15:46 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/function.c
r1935 r1948 2302 2302 struct dep *d; 2303 2303 2304 if ( file->double_colon 2305 && ( file->double_colon != file 2306 || file->last != file)) 2307 error (NILF, _("$(%s ) cannot be used on files with multiple double colon rules like `%s'\n"), 2308 funcname, file->name); 2309 2304 2310 if (idx == 0 /* all */) 2305 2311 { … … 2427 2433 struct dep *d; 2428 2434 2435 if ( file->double_colon 2436 && ( file->double_colon != file 2437 || file->last != file)) 2438 error (NILF, _("$(%s ) cannot be used on files with multiple double colon rules like `%s'\n"), 2439 funcname, file->name); 2440 2429 2441 if (idx == 0 /* all */) 2430 2442 { … … 2551 2563 struct dep *deps = file->deps; 2552 2564 struct dep *d; 2565 2566 if ( file->double_colon 2567 && ( file->double_colon != file 2568 || file->last != file)) 2569 error (NILF, _("$(%s ) cannot be used on files with multiple double colon rules like `%s'\n"), 2570 funcname, file->name); 2553 2571 2554 2572 if (idx == 0 /* all */)
Note:
See TracChangeset
for help on using the changeset viewer.