summaryrefslogtreecommitdiff
path: root/adk/tools
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-30 19:00:41 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-30 19:00:41 +0200
commit9c8476bd6abc1994ca54b195c92f826de707cc5f (patch)
tree790c72555b836567b0831d1c992d0fadb2cae79b /adk/tools
parentf3df2950b77b1d2cd5ec60820e9b92ff299619c2 (diff)
build hosttools only when not available or required
Diffstat (limited to 'adk/tools')
-rw-r--r--adk/tools/depmaker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/adk/tools/depmaker.c b/adk/tools/depmaker.c
index 23d2d2898..9682fb969 100644
--- a/adk/tools/depmaker.c
+++ b/adk/tools/depmaker.c
@@ -174,7 +174,7 @@ int main() {
!(strncmp(pkgdirp->d_name, "glibc", 5) == 0)) {
/* print result to stdout */
printf("package-$(ADK_COMPILE_%s) += %s\n", pkgvar, pkgdirp->d_name);
- printf("hostpackage-$(ADK_HOST_NEED_%s) += %s\n", pkgvar, pkgdirp->d_name);
+ printf("hostpackage-$(ADK_HOST_BUILD_%s) += %s\n", pkgvar, pkgdirp->d_name);
}
if ((pkgdeps = malloc(MAXLINE)) != NULL)