diff --git a/bundle.lisp b/bundle.lisp index 7c6204cf23e184455cafcf1de2ff0b99de46ba9d..b97f643e5e988a02888053fc035d0e83c1035c88 100644 --- a/bundle.lisp +++ b/bundle.lisp @@ -156,10 +156,10 @@ itself.")) ;; operation on a system and its dependencies #+ecl ((member :dll :lib :shared-library :static-library :program :object :program) (compile-file-type :type bundle-type)) - ((member :image) "image") + ((member :image) #-allegro "image" #+allegro "dxl") ((member :dll :shared-library) (cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll"))) ((member :lib :static-library) (cond ((os-unix-p) "a") - ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib")))) + ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib")))) ((eql :program) (cond ((os-unix-p) nil) ((os-windows-p) "exe"))))) (defun bundle-output-files (o c)