Browse Source

Merge pull request #5586

d57b303 depends: fix major regression after d546191dc. (Cory Fields)
0.13
Wladimir J. van der Laan 10 years ago
parent
commit
48ea5e0ea0
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
  1. 4
      depends/funcs.mk

4
depends/funcs.mk

@ -31,8 +31,8 @@ define fetch_file
endef endef
define int_get_build_recipe_hash define int_get_build_recipe_hash
$(eval $(1)_all_file_checksums:=$(shell $(build_SHA256SUM) $(meta_depends) packages/$(1).mk $(addprefix $(PATCHES_PATH)/$(1)/,$($(1)_patches)))) $(eval $(1)_all_file_checksums:=$(shell $(build_SHA256SUM) $(meta_depends) packages/$(1).mk $(addprefix $(PATCHES_PATH)/$(1)/,$($(1)_patches)) | cut -d" " -f1))
$(eval $(1)_recipe_hash:=$(shell echo -n "$($(1)_all_file_checksums)" | cut -d" " -f1 | $(build_SHA256SUM))) $(eval $(1)_recipe_hash:=$(shell echo -n "$($(1)_all_file_checksums)" | $(build_SHA256SUM) | cut -d" " -f1))
endef endef
define int_get_build_id define int_get_build_id

Loading…
Cancel
Save