diff --git a/ats-pkg.cabal b/ats-pkg.cabal
--- a/ats-pkg.cabal
+++ b/ats-pkg.cabal
@@ -1,6 +1,6 @@
 cabal-version: 1.18
 name: ats-pkg
-version: 2.6.1.2
+version: 2.6.1.3
 license: BSD3
 license-file: LICENSE
 copyright: Copyright: (c) 2018 Vanessa McHale
diff --git a/docs/manual.tex b/docs/manual.tex
--- a/docs/manual.tex
+++ b/docs/manual.tex
@@ -17,7 +17,7 @@
 
 \section{Introduction}
 
-ATSpackage is a collection of build scripts written in Haskell. There are three
+ATSpackage is a build tool for ATS written in Haskell. There are three
 things it accomplishes:
 
 \begin{enumerate}
@@ -33,9 +33,6 @@
 \textit{not} accomplish:
 
 \begin{enumerate}
-  \item Package management. ATSPackage does allow for \textit{reproducible}
-    builds, but it does not resolve dependencies. Future support for package
-    management is planned.
   \item Full flexibility of C. As ATSPackage is intended to simplify builds, it
     does not expose everything. This will likely not cause problems, provided
     that the libraries dependend on are written in C, ATS, or Haskell.
diff --git a/src/Language/ATS/Package/Build/Cabal.hs b/src/Language/ATS/Package/Build/Cabal.hs
--- a/src/Language/ATS/Package/Build/Cabal.hs
+++ b/src/Language/ATS/Package/Build/Cabal.hs
@@ -36,6 +36,7 @@
 
 writeDummyFile :: IO ()
 writeDummyFile =
+    createDirectoryIfMissing True "dist-newstyle/lib" >>
     writeFile "dist-newstyle/lib/empty" ""
 
 cabalHooks :: UserHooks
