From 33f404caea17d22525034b987abc4e0df258ba3d 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/compatibility-lib/info.rkt | 1 + pkgs/slideshow-pkgs/slideshow-exe/info.rkt | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/compatibility-lib/info.rkt b/pkgs/compatibility-lib/info.rkt index 53c9302..5b9954a 100644 --- a/pkgs/compatibility-lib/info.rkt +++ b/pkgs/compatibility-lib/info.rkt @@ -1,2 +1,3 @@ #lang setup/infotab (define collection 'multi) +(define deps '("base")) diff --git a/pkgs/slideshow-pkgs/slideshow-exe/info.rkt b/pkgs/slideshow-pkgs/slideshow-exe/info.rkt index 5805b77..5c1df01 100644 --- a/pkgs/slideshow-pkgs/slideshow-exe/info.rkt +++ b/pkgs/slideshow-pkgs/slideshow-exe/info.rkt @@ -2,5 +2,9 @@ (define collection 'multi) -(define deps '("slideshow-lib")) +(define deps '("base" + "compatibility-lib" + "gui-lib" + "pict-lib" + "slideshow-lib")) (define implies '("slideshow-lib"))