diff --git a/cabal-debian.cabal b/cabal-debian.cabal
--- a/cabal-debian.cabal
+++ b/cabal-debian.cabal
@@ -1,5 +1,5 @@
 Name:           cabal-debian
-Version:        4.32
+Version:        4.32.1
 Copyright:      Copyright (c) 2007-2014, David Fox, Jeremy Shaw
 License:        BSD3
 License-File:   LICENSE
diff --git a/debian/changelog b/debian/changelog
--- a/debian/changelog
+++ b/debian/changelog
@@ -2,7 +2,8 @@
 
   * Compute bundled dependencies by looking for library .conf files
     included in the debian package, rather than by looking at the
-    deb's "Provides" attribute.  Some ghc debs do not have Provides.
+    deb's "Provides" attribute.  Some ghc debs (e.g. hvr's ppa) do
+    not generate a "Provides" lines that describes bundled libraries.
 
  -- David Fox <dsf@seereason.com>  Mon, 18 Jan 2016 05:49:55 -0800
 
diff --git a/src/Debian/Debianize/Bundled.hs b/src/Debian/Debianize/Bundled.hs
--- a/src/Debian/Debianize/Bundled.hs
+++ b/src/Debian/Debianize/Bundled.hs
@@ -74,7 +74,9 @@
      unsafePerformIO . chroot root $
      readProcess hcpath
                  [case hc of
+#if MIN_VERSION_Cabal(1,22,0)
                     GHCJS -> "--numeric-ghc-version"
+#endif
                     _ -> "--numeric-version"]
                  ""
 
