diff --git a/bundle.lisp b/bundle.lisp
index 24fb0cae22a135ff36d50d8fba1ec6521569f082..9c3bfe3c033d4420d2b38d283b51242676bfdad7 100644
--- a/bundle.lisp
+++ b/bundle.lisp
@@ -81,12 +81,12 @@
   (defclass monolithic-fasl-op (monolithic-bundle-compile-op basic-fasl-op non-propagating-operation) ()
     (:documentation "Create a single fasl for the system and its dependencies."))
 
-  (defclass monolithic-lib-op (monolithic-bundle-compile-op basic-compile-op non-propagating-operation no-ld-flags-op)
+  (defclass monolithic-lib-op (monolithic-bundle-compile-op non-propagating-operation no-ld-flags-op)
     ((bundle-type :initform #+(or ecl mkcl) :lib #-(or ecl mkcl) :no-output-file))
     (:documentation #+(or ecl mkcl) "Create a single linkable library for the system and its dependencies."
      #-(or ecl mkcl) "Compile a system and its dependencies."))
 
-  (defclass monolithic-dll-op (monolithic-bundle-compile-op sideway-operation selfward-operation no-ld-flags-op)
+  (defclass monolithic-dll-op (monolithic-bundle-compile-op non-propagating-operation no-ld-flags-op)
     ((bundle-type :initform :dll))
     (:documentation "Create a single dynamic (.so/.dll) library for the system and its dependencies."))
 
diff --git a/test/monodll-1.lisp b/test/monodll-1.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..f4cfa5faf8342bb502f0408e5bb06d55654a51f5
--- /dev/null
+++ b/test/monodll-1.lisp
@@ -0,0 +1,11 @@
+(defpackage :test-asdf/monodll-1 (:use)) ;; dummy, for package-system dependencies.
+
+#+ecl
+(ffi:clines "
+extern int always_7();
+
+int always_7()
+{
+	return 7;
+}
+")
diff --git a/test/monodll-user.lisp b/test/monodll-user.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..92b3055001edd5513a4c96d75348eeb9f951cc9a
--- /dev/null
+++ b/test/monodll-user.lisp
@@ -0,0 +1,4 @@
+(defpackage :test-asdf/monodll-user (:use)) ;; dummy, for package-system dependencies.
+
+(in-package :test-package)
+(ffi:def-function "always_42" () :returning :int)
diff --git a/test/monodll.lisp b/test/monodll.lisp
new file mode 100644
index 0000000000000000000000000000000000000000..1984900c37d08c116ab44883bcff911ac5f9452e
--- /dev/null
+++ b/test/monodll.lisp
@@ -0,0 +1,11 @@
+(defpackage :test-asdf/monodll (:use :test-asdf/monodll-1)) ;; dummy, for package-system dependencies.
+
+#+ecl
+(ffi:clines "
+extern int always_42();
+
+int always_42()
+{
+	return 6*always_7();
+}
+")
diff --git a/test/test-bundle.script b/test/test-bundle.script
index a71a1abe0659cee45ed836565258697db83c99f0..751aad2ca6dd0a3e8648acfa7f7acd1b3d552dac 100644
--- a/test/test-bundle.script
+++ b/test/test-bundle.script
@@ -43,10 +43,14 @@
 (operate 'monolithic-fasl-op :test-asdf/bundle-2)
 (assert (probe-file *mono-bundle-2*))
 
-;;; Test DLL-op on ECL.
+;;; Test dll-op and monolithic-dll-op on ECL.
 #+ecl
 (progn
   (operate 'dll-op :test-asdf/dll-test)
   (si:load-foreign-module (first (output-files 'dll-op :test-asdf/dll-test)))
   (operate 'load-op :test-asdf/dll-user)
-  (assert (= (test-package::sample-function) 42)))
+  (assert (= (test-package::sample-function) 42))
+  (operate 'monolithic-dll-op :test-asdf/monodll)
+  (si:load-foreign-module (first (output-files 'monolithic-dll-op :test-asdf/monodll)))
+  (operate 'load-op :test-asdf/monodll-user)
+  (assert (= (test-package::always-42) 42)))