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 | 761dc0a0aea048ef228635a271ef6d3daf0d0518 (patch) | |
tree | 03331e3489694b00957056e8263d9363bcde76ba /package | |
parent | 82914583a98af72e6e117e3ca2feffdf532e3eb5 (diff) | |
download | upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.gz upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.tar.bz2 upstream-761dc0a0aea048ef228635a271ef6d3daf0d0518.zip |
fix a dependency bug
SVN-Revision: 8561
Diffstat (limited to 'package')
-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))) |