ports: also hash patches with absolute path names

Fixes #1305
This commit is contained in:
Christian Helmuth
2015-01-20 13:08:40 +01:00
parent 1717d11742
commit e479b9e8e8
8 changed files with 9 additions and 8 deletions

View File

@@ -15,7 +15,8 @@
# STRICT_HASH to 'no', the MAKEFILE_LIST can be exluded.
#
_PATCHES_IN_REP_DIR := $(foreach P,$(PATCHES),$(wildcard $(REP_DIR)/$(P)))
_PATCHES_IN_REP_DIR := $(foreach P,$(PATCHES),\
$(wildcard $(REP_DIR)/$(subst $(REP_DIR)/,,$(P))))
HASH_INPUT += $(sort $(_PATCHES_IN_REP_DIR)) $(PORT)
ifneq ($(STRICT_HASH),no)