diff --git a/asdf.asd b/asdf.asd
index 317bffef42a79925610954a6ac2459a61d3bb41b..d8a63b8fcea9acbe00118650a347e718bc94d897 100644
--- a/asdf.asd
+++ b/asdf.asd
@@ -12,7 +12,7 @@
   :licence "MIT"
   :description "Another System Definition Facility"
   :long-description "ASDF builds Common Lisp software organized into defined systems."
-  :version "2.011.1"
+  :version "2.011.2"
   ;;:version #.(asdf:asdf-version) ; how do we make that the *described* ASDF's version rather than the *previously loaded* ASDF's version?
   :depends-on ()
   :components
diff --git a/asdf.lisp b/asdf.lisp
index 8c33a0742fba99904ed9db350e34f64341722aa8..8a596d92d75fe56ce32755fd04a789b509c2eb17 100644
--- a/asdf.lisp
+++ b/asdf.lisp
@@ -78,7 +78,7 @@
          ;; "2.345.6" would be a development version in the official upstream
          ;; "2.345.0.7" would be your local modification of an official release
          ;; "2.345.6.7" would be your local modification of a development version
-         (asdf-version "2.011.1")
+         (asdf-version "2.011.2")
          (existing-asdf (fboundp 'find-system))
          (existing-version *asdf-version*)
          (already-there (equal asdf-version existing-version)))
@@ -496,7 +496,7 @@ starting the separation from the end, e.g. when called with arguments
          ;; Giving :unspecific as argument to make-pathname is not portable.
          ;; See CLHS make-pathname and 19.2.2.2.3.
          ;; We only use it on implementations that support it.
-         (or #+(or ccl ecl gcl lispworks sbcl) :unspecific)))
+         (or #+(or ccl gcl lispworks sbcl) :unspecific)))
     (destructuring-bind (name &optional (type unspecific))
         (split-string filename :max 2 :separator ".")
       (if (equal name "")
diff --git a/doc/asdf.texinfo b/doc/asdf.texinfo
index ee6a1fc4d2681385fa022460669f7a8bd1ea9f0f..7d721276727b48cbbd738d1f0b83e02a1ba9df11 100644
--- a/doc/asdf.texinfo
+++ b/doc/asdf.texinfo
@@ -1937,7 +1937,7 @@ contains the following:
 @end example
 
 Then when someone else (call her Y) checks out a copy of this
-repository, she need only add 
+repository, she need only add
 @example
 (:include "/path/to/my/checkout/directory/asdf.conf")
 @end example
diff --git a/test/test-configuration.script b/test/test-configuration.script
index 6533208e36c83611a5575690ada3ffef7a7cccdb..b8a8b2bfbb7334b68c045458f4cc096c751a5594 100644
--- a/test/test-configuration.script
+++ b/test/test-configuration.script
@@ -47,7 +47,7 @@
           "dir5/dir7/"                  ; foo5
           "dir8/"                       ; foo6
           "dir9/dira/"                  ; foo7 should be found because of :here :tree
-          "dir9/dira/dirc"              ; foo8 ditto
+          "dir9/dira/dirc/"              ; foo8 ditto
           "dir9/dirb/")                 ; foo9 should /not/ be found -- not under :here :tree
     :collect (under-test-directory dir)))