<div dir="ltr">On Fri, Apr 19, 2013 at 12:36 AM, Eli Barzilay <span dir="ltr">&lt;<a href="mailto:eli@barzilay.org" target="_blank">eli@barzilay.org</a>&gt;</span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">Three hours ago, Patrick King wrote:<br>
&gt; It really was a<br>
&gt; simple cut &amp; paste of the whole directory tree, and the use of case<br>
&gt; higher up the tree doesn&#39;t seem to cause any problem.<br>
<br>
</div>Windows is &quot;case preserving&quot; which means that it does keep the proper<br>
names, but file access is insensitive.  This means that it&#39;s really<br>
best to treat files as case sensitive and uses the proper names in<br>
code too, otherwise you risk code breaking when you switch to a case<br>
sensitive system...<br></blockquote><div><br></div><div>And that was exactly the problem, only it was hidden in a file that I wasn&#39;t<br></div><div>directly looking at. I had used  &#39;(require &quot;private/...&quot;) instead of<br>
</div><div>&#39;(require &quot;Private/...&quot;) in a file <i>required </i>by the one I was looking at (yes, I<br></div><div>do need to work on semi-circular dependencies in this project).<br></div><div>Windows was silently ignoring the typo. Linux does not.<br>
<br></div>So, bottom line, transferring the code to Linux really was easy. Finding<br></div><div class="gmail_quote">the lurking bugs that Windows tolerated, slightly less so.<br><br></div><div class="gmail_quote">As always, thanks for the clues, guys<br>
</div></div></div>