Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (19 - 21 of 100)

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Ticket Resolution Summary Owner Reporter
#49 fixed kmk: includedep doesn't strip newline when reading normal variables. bird bird
Description

Title says it all. Easy to spot in src/VBox/Installer/win by changing -include to includedep. Should be fixed on windows before 0.1.4, the other binaries doesn't need to be rebuilt.

#38 fixed kmk: includedep $(whatever) doesn't work bird bird
Description

Need to expand the includedep input before passing it to open.

#42 fixed kmk: implement secondary target expansion bird bird
Description

GNU make sports a feature for secondary expansion of prerequisites, it will be extremely handy for kBuild to have a similar feature for targets (aka goals and files) as well. The kBuild use case is $(SomeTarget_PATH)/generated-file.h: prereq; $(APPEND) $@ whatever .

Modeling it after the secondary prerequisite expansion, the change consists of adding a new special variable .SECONDARYTARGETEXPANSION that is used to enable the feature. Detect targets needing secondary expansion in enter_file() when the string is in the cache. And finally do the expansion at the top of snap_deps().

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
Note: See TracQuery for help on using queries.