summaryrefslogtreecommitdiffstats
path: root/rules/ipkg.make
diff options
context:
space:
mode:
authorBjoern Buerger <b.buerger@pengutronix.de>2006-01-13 17:11:06 +0000
committerBjoern Buerger <b.buerger@pengutronix.de>2006-01-13 17:11:06 +0000
commite6aa3131d43d1480cddbe08844bdb6c17a146408 (patch)
tree3e576c3d15087ce6dac05571e455b6f3a2324e99 /rules/ipkg.make
parent8279757295af7177668765f932171e5664a93256 (diff)
downloadptxdist-e6aa3131d43d1480cddbe08844bdb6c17a146408.tar.gz
ptxdist-e6aa3131d43d1480cddbe08844bdb6c17a146408.tar.xz
fixed dependency
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-0.9-trunk@3988 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/ipkg.make')
-rw-r--r--rules/ipkg.make6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules/ipkg.make b/rules/ipkg.make
index 3b49e46a4..5f1a73bb2 100644
--- a/rules/ipkg.make
+++ b/rules/ipkg.make
@@ -32,7 +32,7 @@ IPKG_DIR = $(BUILDDIR)/$(IPKG)
ipkg_get: $(STATEDIR)/ipkg.get
-$(STATEDIR)/ipkg.get: $(IPKG_SOURCE)
+$(STATEDIR)/ipkg.get: $(ipkg_get_deps_default)
@$(call targetinfo, $@)
@$(call get_patches, $(IPKG))
@$(call touch, $@)
@@ -47,7 +47,7 @@ $(IPKG_SOURCE):
ipkg_extract: $(STATEDIR)/ipkg.extract
-$(STATEDIR)/ipkg.extract: $(ipkg_extract_deps)
+$(STATEDIR)/ipkg.extract: $(ipkg_extract_deps_default)
@$(call targetinfo, $@)
@$(call clean, $(IPKG_DIR))
@$(call extract, $(IPKG_SOURCE))
@@ -93,7 +93,7 @@ $(STATEDIR)/ipkg.compile: $(ipkg_compile_deps_default)
ipkg_install: $(STATEDIR)/ipkg.install
-$(STATEDIR)/ipkg.install: $(STATEDIR)/ipkg.compile
+$(STATEDIR)/ipkg.install: $(ipkg_install_deps_default)
@$(call targetinfo, $@)
@$(call install, IPKG)
@$(call touch, $@)