From 8fb61c1e58556fbdb98333fb7746907774d951cb Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 12 Nov 2012 17:07:50 +1030 Subject: [PATCH] grab_file: move ccan/str_alloc to testdepends Signed-off-by: Rusty Russell --- ccan/grab_file/_info | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ccan/grab_file/_info b/ccan/grab_file/_info index 5bae7a56..1f6e00d7 100644 --- a/ccan/grab_file/_info +++ b/ccan/grab_file/_info @@ -44,11 +44,14 @@ int main(int argc, char *argv[]) return 1; if (strcmp(argv[1], "depends") == 0) { - printf("ccan/str_talloc\n"); /* Needed for tests. */ printf("ccan/talloc\n"); printf("ccan/noerr\n"); return 0; } + if (strcmp(argv[1], "testdepends") == 0) { + printf("ccan/str_talloc\n"); + return 0; + } return 1; } -- 2.39.2