<div dir="ltr"><br><div class="gmail_extra"><br><br><div class="gmail_quote">On Tue, Jun 18, 2013 at 3:14 PM, Asumu Takikawa <span dir="ltr">&lt;<a href="mailto:asumu@ccs.neu.edu" target="_blank">asumu@ccs.neu.edu</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div class="im">On 2013-06-18 10:47:01 -0600, Matthew Flatt wrote:<br>

</div><div class="im">&gt; Because this change will break all sorts of things in the short run,<br>
&gt; I&#39;d like to feel more confident that enough of us are ready before<br>
&gt; merging it to the main Racket repository.<br>
<br>
</div>The pkg2 branch builds for me fine (modulo `plot`) and I can run<br>
DrRacket. The `plt-games` executable does not work, however, and just<br>
produces a blank window for me.<br><br></blockquote><div><br></div><div style>This is because this expression:</div><div style><br></div><div style><div>(define gamedirs </div><div>  (filter directory-exists?</div><div>          (map (λ (x) (build-path x &quot;games&quot;))</div>
<div>               (current-library-collection-paths))))</div><div><br></div><div style>in games/main.rkt returns the empty list. Probably some different strategy should be used for finding games. Maybe in the pkg world just doing this:</div>
<div style><br></div><div style><div>(define gamedirs </div><div>  (list (collection-path &quot;games&quot;)))</div><div><br></div><div style>is the right thing?</div></div><div style><br></div></div><div><br></div><div>Works great for me too, btw. </div>
</div><br></div><div class="gmail_extra" style>Robby</div></div>