mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-23 23:46:16 +02:00
revert .prepared handling
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3765 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
a8fa433131
commit
fc6fc18695
@ -5,14 +5,18 @@ else
|
||||
endif
|
||||
|
||||
define Build/DefaultTargets
|
||||
prepared: FORCE $(DL_DIR)/$(PKG_SOURCE)
|
||||
|
||||
ifeq ($(shell $(SCRIPT_DIR)/timestamp.pl -p $(PKG_BUILD_DIR) .),.)
|
||||
$(PKG_BUILD_DIR)/.prepared: package-clean
|
||||
endif
|
||||
|
||||
$(PKG_BUILD_DIR)/.prepared: $(DL_DIR)/$(PKG_SOURCE)
|
||||
@-rm -rf $(PKG_BUILD_DIR)
|
||||
@mkdir -p $(PKG_BUILD_DIR)
|
||||
$(call Build/Prepare)
|
||||
endif
|
||||
touch $$@
|
||||
|
||||
$(PKG_BUILD_DIR)/.configured: prepared
|
||||
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
|
||||
$(call Build/Configure)
|
||||
touch $$@
|
||||
|
||||
@ -109,7 +113,7 @@ define BuildPackage
|
||||
DUMPINFO += \
|
||||
echo "@@";
|
||||
|
||||
$$(IDIR_$(1))/CONTROL/control: prepared
|
||||
$$(IDIR_$(1))/CONTROL/control: $(PKG_BUILD_DIR)/.prepared
|
||||
mkdir -p $$(IDIR_$(1))/CONTROL
|
||||
echo "Package: $(1)" > $$(IDIR_$(1))/CONTROL/control
|
||||
echo "Version: $(VERSION)" >> $$(IDIR_$(1))/CONTROL/control
|
||||
@ -221,17 +225,17 @@ else
|
||||
$(PACKAGE_DIR):
|
||||
mkdir -p $@
|
||||
|
||||
source: FORCE $(DL_DIR)/$(PKG_SOURCE)
|
||||
prepare: FORCE prepared
|
||||
configure: FORCE $(PKG_BUILD_DIR)/.configured
|
||||
source: $(DL_DIR)/$(PKG_SOURCE)
|
||||
prepare: $(PKG_BUILD_DIR)/.prepared
|
||||
configure: $(PKG_BUILD_DIR)/.configured
|
||||
|
||||
compile-targets: FORCE
|
||||
compile: FORCE compile-targets
|
||||
compile-targets:
|
||||
compile: compile-targets
|
||||
|
||||
install-targets: FORCE
|
||||
install: FORCE install-targets
|
||||
install-targets:
|
||||
install: install-targets
|
||||
|
||||
clean-targets: FORCE
|
||||
clean-targets:
|
||||
clean: FORCE
|
||||
@$(MAKE) clean-targets
|
||||
rm -rf $(PKG_BUILD_DIR)
|
||||
|
Loading…
Reference in New Issue
Block a user