From 912ca5bf7e01b5bb5f84b170c87f7a10eac1fdab Mon Sep 17 00:00:00 2001 From: Francois-Rene Rideau <tunes@google.com> Date: Tue, 7 Jul 2015 13:13:56 -0400 Subject: [PATCH] bundle: hush a warning on allegro/windows --- bundle.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle.lisp b/bundle.lisp index 916374d90..f5f53d080 100644 --- a/bundle.lisp +++ b/bundle.lisp @@ -159,7 +159,7 @@ itself.")) ;; operation on a system and its dependencies #+(or clasp ecl) ((member :dll :lib :shared-library :static-library :program :object :program) (compile-file-type :type bundle-type)) - ((member :image) (or #+allegro "dxl" #+(and clisp os-windows) "exe" "image")) + ((member :image) #+allegro "dxl" #+(and clisp os-windows) "exe" #-(or allegro (and clisp os-windows)) "image") ((member :dll :shared-library) (os-cond ((os-macosx-p) "dylib") ((os-unix-p) "so") ((os-windows-p) "dll"))) ((member :lib :static-library) (os-cond ((os-unix-p) "a") ((os-windows-p) (if (featurep '(:or :mingw32 :mingw64)) "a" "lib")))) -- GitLab