diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown
--- a/CHANGELOG.markdown
+++ b/CHANGELOG.markdown
@@ -1,3 +1,7 @@
+0.4.2
+-----
+* Fixed a typo in .cabal which prevented the `Embed` flag from working properly.
+
 0.4.1
 -----
 * Added support for embedding all of the pattern files into the library as resources by using `cabal install hyphenation -fembed`. This is not the default as it inflates the library size by ~3MB and forces all users to pay for all the hyphenation patterns, but it can be useful for users who aim to build standalone applications.
diff --git a/hyphenation.cabal b/hyphenation.cabal
--- a/hyphenation.cabal
+++ b/hyphenation.cabal
@@ -1,6 +1,6 @@
 name:          hyphenation
 category:      Text
-version:       0.4.1
+version:       0.4.2
 license:       BSD3
 cabal-version: >= 1.8
 license-file:  LICENSE
@@ -55,7 +55,7 @@
     build-depends:
       file-embed           >= 0.0.7   && < 0.1,
       bytestring           >= 0.9.4   && < 0.11
-    CC-OPtions: "-DEMBED"
+    CPP-Options: "-DEMBED"
 
   exposed-modules:
    Text.Hyphenation
