diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 22:43:25 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 22:43:25 +0000 |
commit | 485f2e16f4da17126fb20deb11fdd71535f97f23 (patch) | |
tree | dc3ea2057f8d7654bb4b789aaaeba53cb9463f71 /package/Makefile | |
parent | 6826d08dbd54196c2e762051bbc49c9d27a25343 (diff) | |
download | master-187ad058-485f2e16f4da17126fb20deb11fdd71535f97f23.tar.gz master-187ad058-485f2e16f4da17126fb20deb11fdd71535f97f23.tar.bz2 master-187ad058-485f2e16f4da17126fb20deb11fdd71535f97f23.zip |
fix a dependency bug
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8561 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/package/Makefile b/package/Makefile index 38b650c09a..38e39da293 100644 --- a/package/Makefile +++ b/package/Makefile @@ -40,15 +40,10 @@ $(curdir)/index: FORCE $(curdir)/flags-install:= -j1 -$(eval $(call stampfile,$(curdir),package,prereq)) -$(eval $(call stampfile,$(curdir),package,cleanup)) -$(eval $(call stampfile,$(curdir),package,compile)) -$(eval $(call stampfile,$(curdir),package,install)) -$(eval $(call stampfile,$(curdir),package,rootfs-prepare)) - -$($(curdir)/stamp-cleanup): $(TMP_DIR)/.build -$($(curdir)/stamp-compile): $($(curdir)/stamp-cleanup) $(TMP_DIR)/.build -$($(curdir)/stamp-install): $($(curdir)/stamp-compile) $(TMP_DIR)/.build -$($(curdir)/stamp-rootfs-prepare): $($(curdir)/stamp-install) $(TMP_DIR)/.build +$(eval $(call stampfile,$(curdir),package,prereq,.config)) +$(eval $(call stampfile,$(curdir),package,cleanup,$(TMP_DIR)/.build)) +$(eval $(call stampfile,$(curdir),package,compile,$(TMP_DIR)/.build)) +$(eval $(call stampfile,$(curdir),package,install,$(TMP_DIR)/.build)) +$(eval $(call stampfile,$(curdir),package,rootfs-prepare,$(TMP_DIR)/.build)) $(eval $(call subdir,$(curdir))) |