diff --git a/debian/changelog b/debian/changelog
index fd5bd96c71e4400fa9902439037755ded645b61a..210e2b47c941ad5c548797388da2cc0a6df3da65 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+cl-asdf (1.77.2-1) unstable; urgency=low
+
+  * Don't export asdf:wild-module as can cause a full warning when
+  reloading asdf
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Mon, 11 Aug 2003 21:55:16 -0600
+
 cl-asdf (1.77.1-1) unstable; urgency=low
 
   * cclan.lisp: conditionalize for sbcl (closes: 201822)
diff --git a/wild-modules.lisp b/wild-modules.lisp
index 0635f3a14090caf51262ef0c8970d052ed6f9745..2649d7eff479ef7bda03f404338afe7eeea30d8a 100644
--- a/wild-modules.lisp
+++ b/wild-modules.lisp
@@ -32,4 +32,7 @@ use a wild pathname instead." module)))
                              options))
                     files)))))
 
-(export '(wild-module))
+;; Don't export wild-module or else will get a full warning
+;; when (require 'asdf) if asdf is already loaded
+
+;;(export '(wild-module))