From 81ee130cd530c90895089864957da2ea7d113202 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Wed, 2 Mar 2016 23:52:01 +0100 Subject: [PATCH] Circumvent raco make bug racket/typed-racket#292 "open-input-file: cannot open directory as a file": split the (require (submod ".." typed) (submod ".." untyped)) into two separate require forms. --- graph-lib/lib/low/typed-untyped.rkt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/graph-lib/lib/low/typed-untyped.rkt b/graph-lib/lib/low/typed-untyped.rkt index 2bdffa34..0cea441d 100644 --- a/graph-lib/lib/low/typed-untyped.rkt +++ b/graph-lib/lib/low/typed-untyped.rkt @@ -119,8 +119,8 @@ #`((module #,(ds 'test) #,(ds 'typed/racket) (#,(ds 'require) (#,(ds 'submod) #,(ds "..") #,(ds 'typed) - #,(ds 'test)) - (#,(ds 'submod) #,(ds "..") + #,(ds 'test))) + (#,(ds 'require) (#,(ds 'submod) #,(ds "..") #,(ds 'untyped) #,(ds 'test)))))) (#,(ds 'require) '#,(ds 'typed))