diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -135,8 +135,8 @@
 ### Calling Haskell from ATS
 
 You can see a demo [here](https://github.com/vmchale/fast-arithmetic).
-Currently, there is not generic `Storable` instance for ATS, so the process is
-a bit more involved than is ideal. `atspkg` has abilities similar to
+Currently, there is not generic `Storable` instance that works with ATS, so the
+process is a bit more involved than is ideal. `atspkg` has abilities similar to
 [hs2ats](http://hackage.haskell.org/package/hs2ats), which means that you can
 usually generate ATS types based on the Haskell types.
 
diff --git a/ats-pkg.cabal b/ats-pkg.cabal
--- a/ats-pkg.cabal
+++ b/ats-pkg.cabal
@@ -1,5 +1,5 @@
 name:                ats-pkg
-version:             2.1.0.5
+version:             2.1.0.6
 synopsis:            Package manager for ATS
 description:         A collection of scripts to make building ATS projects easy.
 homepage:            https://github.com/vmchale/atspkg#readme
diff --git a/src/Language/ATS/Package/Build.hs b/src/Language/ATS/Package/Build.hs
--- a/src/Language/ATS/Package/Build.hs
+++ b/src/Language/ATS/Package/Build.hs
@@ -72,7 +72,7 @@
         case man config of
             Just mt -> if not pa then pure () else do
                 let mt' = manTarget mt
-                    manDest = (home <> "/.local/share/man/man1/") <> mt'
+                    manDest = home <> "/.local/share/man/man1/" <> takeFileName mt'
                 need [mt']
                 copyFile' mt' manDest
             Nothing -> pure ()
diff --git a/stack.yaml b/stack.yaml
--- a/stack.yaml
+++ b/stack.yaml
@@ -4,11 +4,11 @@
   - '.'
 extra-deps:
   - shake-ext-2.1.0.1
-  - shake-ats-1.1.0.0
+  - shake-ats-1.1.0.2
   - composition-prelude-1.1.0.2
-  - language-ats-0.1.1.11
+  - language-ats-0.1.1.15
   - cli-setup-0.2.0.1
-  - hs2ats-0.2.0.1
+  - hs2ats-0.2.0.3
 flags:
   ats-pkg:
     development: false
