mirror of https://github.com/hak5/openwrt-owl.git
parent
4a71f7adae
commit
3300149aed
|
@ -15,15 +15,20 @@ include $(INCLUDE_DIR)/prereq.mk
|
||||||
define Build/DefaultTargets
|
define Build/DefaultTargets
|
||||||
ifeq ($(DUMP),)
|
ifeq ($(DUMP),)
|
||||||
ifeq ($(CONFIG_AUTOREBUILD),y)
|
ifeq ($(CONFIG_AUTOREBUILD),y)
|
||||||
|
_INFO:=
|
||||||
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),$(PKG_BUILD_DIR))
|
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),$(PKG_BUILD_DIR))
|
||||||
$$(warning package has changed, need to rebuild $(subst $(TOPDIR)/,,$(PKG_BUILD_DIR)))
|
_INFO+=$(subst $(TOPDIR)/,,$(PKG_BUILD_DIR))
|
||||||
$(PKG_BUILD_DIR)/.prepared: package-clean
|
$(PKG_BUILD_DIR)/.prepared: package-clean
|
||||||
endif
|
endif
|
||||||
|
|
||||||
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
|
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg -x ipkg-install $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
|
||||||
$$(warning $(subst $(TOPDIR)/,,$(PKG_BUILD_DIR)) has changed, need to rebuild $(subst $(TOPDIR)/,,$(IPKG_$(1))))
|
_INFO+=$(subst $(TOPDIR)/,,$(IPKG_$(1)))
|
||||||
$(PKG_BUILD_DIR)/.built: package-rebuild
|
$(PKG_BUILD_DIR)/.built: package-rebuild
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
ifneq ($(MAKECMDGOALS),prereq)
|
||||||
|
$$(info Rebuilding $$(_INFO))
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue