1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-20 15:48:26 +02:00

fix .built target

SVN-Revision: 3776
This commit is contained in:
Mike Baker 2006-05-14 10:24:06 +00:00
parent 12ec1ba1fb
commit 11817c5453

View File

@ -5,12 +5,11 @@ else
endif
define Build/DefaultTargets
ifeq ($(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),.)
$(PKG_BUILD_DIR)/.prepared: package-clean
endif
ifneq ($$(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
ifneq ($(shell $(SCRIPT_DIR)/timestamp.pl -p -x ipkg $(IPKG_$(1)) $(PKG_BUILD_DIR)),$(IPKG_$(1)))
$(PKG_BUILD_DIR)/.built: package-rebuild
endif
@ -145,9 +144,7 @@ define BuildPackage
clean: $(1)-clean
ifneq ($(__DEFAULT_TARGETS),1)
$(eval $(call Build/DefaultTargets,$(1)))
endif
$$(eval $$(call Build/DefaultTargets,$(1)))
endef