fix spontaneous rebuilds caused by make package/<name>/update with quilt
SVN-Revision: 8879
This commit is contained in:
parent
c538ef9899
commit
e554dafa93
3 changed files with 2 additions and 3 deletions
|
@ -12,7 +12,7 @@ include $(INCLUDE_DIR)/host.mk
|
|||
include $(INCLUDE_DIR)/unpack.mk
|
||||
include $(INCLUDE_DIR)/depends.mk
|
||||
|
||||
STAMP_PREPARED:=$(PKG_BUILD_DIR)/.prepared_$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),))
|
||||
STAMP_PREPARED=$(PKG_BUILD_DIR)/.prepared$(if $(QUILT)$(DUMP),,$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),)))
|
||||
STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured
|
||||
STAMP_BUILT:=$(PKG_BUILD_DIR)/.built
|
||||
STAMP_INSTALLED:=$(STAGING_DIR_HOST)/stamp/.$(PKG_NAME)_installed
|
||||
|
|
|
@ -16,7 +16,7 @@ include $(INCLUDE_DIR)/host.mk
|
|||
include $(INCLUDE_DIR)/unpack.mk
|
||||
include $(INCLUDE_DIR)/depends.mk
|
||||
|
||||
STAMP_PREPARED:=$(PKG_BUILD_DIR)/.prepared$(if $(DUMP),,_$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),)))
|
||||
STAMP_PREPARED=$(PKG_BUILD_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call find_md5,${CURDIR} $(PKG_FILE_DEPEND),)))
|
||||
STAMP_CONFIGURED:=$(PKG_BUILD_DIR)/.configured
|
||||
STAMP_BUILT:=$(PKG_BUILD_DIR)/.built
|
||||
|
||||
|
|
|
@ -26,7 +26,6 @@ endef
|
|||
|
||||
QUILT?=$(strip $(shell test -f $(PKG_BUILD_DIR)/.quilt_used && echo y))
|
||||
ifneq ($(QUILT),)
|
||||
STAMP_PREPARED:=$(strip $(STAMP_PREPARED))_q
|
||||
STAMP_PATCHED:=$(PKG_BUILD_DIR)/.quilt_patched
|
||||
override CONFIG_AUTOREBUILD=
|
||||
define Build/Patch/Default
|
||||
|
|
Loading…
Reference in a new issue