diff options
author | Phil Sutter <phil.sutter@viprinet.com> | 2011-01-19 11:46:29 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-01-20 14:00:28 +0100 |
commit | c99d74cf9b4a29ad6fd046919e5d2eae1d90052e (patch) | |
tree | c990217ee198b52973e0fe7720269895fb411737 /tools/adk | |
parent | 438b1f972d897987ce95cdd28bcab264b9d820c4 (diff) |
pkgmaker: comment out debug output using #if 0
Signed-off-by: Phil Sutter <phil.sutter@viprinet.com>
Diffstat (limited to 'tools/adk')
-rw-r--r-- | tools/adk/pkgmaker.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/adk/pkgmaker.c b/tools/adk/pkgmaker.c index 18465ce18..bef206533 100644 --- a/tools/adk/pkgmaker.c +++ b/tools/adk/pkgmaker.c @@ -439,7 +439,7 @@ int main() { if (fclose(pkg) != 0) perror("Failed to close file stream for Makefile"); - /* +#if 0 if (pkg_name != NULL) fprintf(stderr, "Package name is %s\n", pkg_name); if (pkg_section != NULL) @@ -461,8 +461,8 @@ int main() { if (pkg_multi != NULL) fprintf(stderr, "Package multi is %s\n", pkg_multi); - strmap_enum(pkgmap, iter_debug, NULL); - */ + strmap_enum(pkgmap, iter_debug, NULL); +#endif /* generate master source Config.in file */ if (snprintf(path, MAXPATH, "package/pkgconfigs.d/%s/Config.in", pkgdirp->d_name) < 0) |