summaryrefslogtreecommitdiffstats
path: root/scripts/lib/ptxd_lib_dgen.awk
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2012-05-26 12:05:05 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2012-05-27 14:17:44 +0200
commitb3f66aa25b560530ef4bed73a50674d948917dd1 (patch)
treefb41561ada750cf0b7e6b8d16b3a9b97a9e7665e /scripts/lib/ptxd_lib_dgen.awk
parentf8bff8c6280f0cf31f1bc9ba91b790f5685206f6 (diff)
downloadptxdist-b3f66aa25b560530ef4bed73a50674d948917dd1.tar.gz
ptxdist-b3f66aa25b560530ef4bed73a50674d948917dd1.tar.xz
prepare: move autogen into a separate stage
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
Diffstat (limited to 'scripts/lib/ptxd_lib_dgen.awk')
-rw-r--r--scripts/lib/ptxd_lib_dgen.awk7
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/lib/ptxd_lib_dgen.awk b/scripts/lib/ptxd_lib_dgen.awk
index e8b5c793e..41000721b 100644
--- a/scripts/lib/ptxd_lib_dgen.awk
+++ b/scripts/lib/ptxd_lib_dgen.awk
@@ -277,7 +277,8 @@ END {
# default deps
#
print "$(STATEDIR)/" this_pkg ".extract: " "$(STATEDIR)/" this_pkg ".get" > DGEN_DEPS_POST;
- print "$(STATEDIR)/" this_pkg ".prepare: " "$(STATEDIR)/" this_pkg ".extract" > DGEN_DEPS_POST;
+ print "$(STATEDIR)/" this_pkg ".extract.post: " "$(STATEDIR)/" this_pkg ".extract" > DGEN_DEPS_POST;
+ print "$(STATEDIR)/" this_pkg ".prepare: " "$(STATEDIR)/" this_pkg ".extract.post" > DGEN_DEPS_POST;
print "$(STATEDIR)/" this_pkg ".tags: " "$(STATEDIR)/" this_pkg ".prepare" > DGEN_DEPS_POST;
print "$(STATEDIR)/" this_pkg ".compile: " "$(STATEDIR)/" this_pkg ".prepare" > DGEN_DEPS_POST;
print "$(STATEDIR)/" this_pkg ".install: " "$(STATEDIR)/" this_pkg ".compile" > DGEN_DEPS_POST;
@@ -315,7 +316,7 @@ END {
this_dep = PKG_to_pkg[this_DEP_array[i]]
print \
- "$(STATEDIR)/" this_pkg ".prepare: " \
+ "$(STATEDIR)/" this_pkg ".extract.post: " \
"$(STATEDIR)/" this_dep ".install.post" > DGEN_DEPS_POST;
print \
"$(STATEDIR)/" this_pkg ".install.unpack: " \
@@ -356,7 +357,7 @@ END {
}
print \
- "$(STATEDIR)/" this_pkg ".prepare: " \
+ "$(STATEDIR)/" this_pkg ".extract.post: " \
"$(STATEDIR)/" virtual ".install" > DGEN_DEPS_POST;
print \
"$(STATEDIR)/" this_pkg ".install.unpack: " \