Custom Query (100 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (46 - 48 of 100)

Ticket Resolution Summary Owner Reporter
#38 fixed kmk: includedep $(whatever) doesn't work bird bird
Description

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

#39 fixed kmk_append: Two new options {{{-d}}} and {{{-t}}} bird bird
Description

The -d option should put the text/variable/commands in a define define_name ... endef block. This saves two invocations to write the define/endef.

The -t option should truncate the file before writing to it. This saves a $(RM).

#40 wontfix kmk: $(commands ) and $< doesn't work quite well together. bird bird
Description

This doesn't work (from src/VBox/HostDrivers/Support/Makefile.kmk):

$(PATH_BIN)/src/Makefile: \
		$(PATH_SUB_CURRENT)/linux/Makefile \
		$$(warning 1=$$(commands $$(PATH_BIN)/src/Makefile)) \
		$$(warning 2=$$(Support/linux/Makefile_CMDS_PREV)) \
		$$(comp-cmds-ex $$(Support/linux/Makefile_CMDS_PREV),$$(commands $$(PATH_BIN)/src/Makefile),FORCE)
	$(call MSG_TOOL,Creating,,$@)
ifndef VBOX_WITH_HARDENING
	$(QUIET)$(SED) -e "s;-DVBOX_WITH_HARDENING;;g" --output $@ $<
else
	$(QUIET)$(CP) -f $< $@
endif
	%$(QUIET2)$(RM) -f -- $(PATH_TARGET)/vboxmod-1.dep
	%$(QUIET2)$(APPEND) '$(PATH_TARGET)/vboxmod-1.dep' 'define Support/linux/Makefile_CMDS_PREV'
	%$(QUIET2)$(APPEND) -c '$(PATH_TARGET)/vboxmod-1.dep' '$@'
	%$(QUIET2)$(APPEND) '$(PATH_TARGET)/vboxmod-1.dep' 'endef'

-include $(PATH_TARGET)/vboxmod-1.dep
Note: See TracQuery for help on using queries.