- Notifications
You must be signed in to change notification settings - Fork28
Commitc5c7fa2
committed
Fix program build rule in src/bin/scripts/Makefile.
Commit69ae9dc added a globally-visible "%: %.o" rule, but we failedto notice that src/bin/scripts/Makefile already had such a rule.Apparently, the later occurrence of the same rule wins in nearly allversions of gmake ... but not in the one used by buildfarm member jacana.jacana is evidently using the global rule, which says to link "$<",ie just the first dependency. But the scripts makefile needs tolink "$^", ie all the dependencies listed for the target.There is, fortunately, no good reason not to use "$^" in the globalversion of the rule, so we can just do that and get rid of the localversion.1 parent807ae41 commitc5c7fa2
2 files changed
+9
-12
lines changedLines changed: 1 addition & 1 deletion
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
747 | 747 |
| |
748 | 748 |
| |
749 | 749 |
| |
750 |
| - | |
| 750 | + | |
751 | 751 |
| |
752 | 752 |
| |
753 | 753 |
| |
|
Lines changed: 8 additions & 11 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
23 | 23 |
| |
24 | 24 |
| |
25 | 25 |
| |
26 |
| - | |
27 |
| - | |
28 |
| - | |
29 |
| - | |
30 |
| - | |
31 |
| - | |
32 |
| - | |
33 |
| - | |
34 |
| - | |
35 |
| - | |
36 |
| - | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
| 29 | + | |
| 30 | + | |
| 31 | + | |
| 32 | + | |
| 33 | + | |
37 | 34 |
| |
38 | 35 |
| |
39 | 36 |
| |
|
0 commit comments
Comments
(0)