From f833d9d4884a8e91f8fff0d60b1793aaa8b4b564 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Sat, 29 Jun 2013 05:42:38 -0600 Subject: [PATCH] auto-fix dependencies in "pkgs" Left one dependency broken: "drracket" currently depends on "htdp" for a test. That needs to be fixed by removing the dependency (moving the test to "htdp?), instead of changing the declared dependencies. original commit: 51290fd2a95def6bb3b6d3d735cb62444e157553 --- pkgs/rackunit-lib/info.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/rackunit-lib/info.rkt b/pkgs/rackunit-lib/info.rkt index ade8633..e3f80ae 100644 --- a/pkgs/rackunit-lib/info.rkt +++ b/pkgs/rackunit-lib/info.rkt @@ -2,4 +2,5 @@ (define collection 'multi) -(define deps '("data-lib")) +(define deps '("base" + "data-lib"))