summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJasper Van der Jeugt <jaspervdj@gmail.com>2011-05-18 15:57:13 +0200
committerJasper Van der Jeugt <jaspervdj@gmail.com>2011-05-18 15:57:13 +0200
commitdf1d77e5f1ed9782387f57ab376317e86789d48f (patch)
treedcac3a05a7f77da516990658cd7a842a36b3caab
parentf86651895690b1684187c5bd64846482fb5f06a5 (diff)
downloadhakyll-df1d77e5f1ed9782387f57ab376317e86789d48f.tar.gz
Note about case insensitive issue in tutorial
-rw-r--r--examples/hakyll/tutorial.markdown15
1 files changed, 13 insertions, 2 deletions
diff --git a/examples/hakyll/tutorial.markdown b/examples/hakyll/tutorial.markdown
index 96d85c5..150e881 100644
--- a/examples/hakyll/tutorial.markdown
+++ b/examples/hakyll/tutorial.markdown
@@ -275,9 +275,9 @@ supported on linux systems. You can enable the bindings using:
Problems
--------
-### regex-pcre dependency on Mac OS X
+### regex-pcre dependency on Mac OS
-Hakyll requires [regex-pcre], which might fail to build on Mac OS X. To solve
+Hakyll requires [regex-pcre], which might fail to build on Mac OS. To solve
this problem, make sure the [pcre] C library is installed (via homebrew or
macports). Then install [regex-pcre] using:
@@ -291,3 +291,14 @@ or
[regex-pcre]: http://hackage.haskell.org/package/regex-pcre
[pcre]: http://www.pcre.org/
+
+### "File name does not match module name" on Mac OS
+
+ Hakyll.hs:1:1:
+ File name does not match module name:
+ Saw: `Main'
+ Expected: `Hakyll'
+
+Is an error encountered on Mac OS when `hakyll.hs` is located on a
+case-insensitive filesystem. A workaround is to rename it to something that
+isn't the name of the module, for example, `site.hs`.