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)/stamp/.$(PKG_NAME)_installed
include $(INCLUDE_DIR)/download.mk
include $(INCLUDE_DIR)/quilt.mk
$(STAMP_BUILT): $(STAMP_CONFIGURED)
$(Build/Compile)
+ touch $$@
+
+ $(STAMP_INSTALLED): $(STAMP_BUILT)
$(call Build/InstallDev,$(STAGING_DIR))
touch $$@
ifdef Build/InstallDev
- compile: $(STAMP_BUILT)
+ compile: $(STAMP_INSTALLED)
endif
define Build/DefaultTargets
endef
define pkg_install_bin
- $(foreach install_apps,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_file)`; $(INSTALL_BIN) $(2)/$(install_file) $(3)/`dirname $(install_file)`;)
+ $(foreach install_apps,$(1),$(INSTALL_DIR) $(3)/`dirname $(install_apps)`; $(INSTALL_BIN) $(2)/$(install_apps) $(3)/`dirname $(install_apps)`;)
endef
define Build/Prepare