Changeset 14169


Ignore:
Timestamp:
10/08/12 18:06:55 (11 years ago)
Author:
Mark Evenson
Message:

Fix ABCL-ASDF's ability to find Maven under Windows.

Since the JVM process is a Windows process, even when the
implementation is invoked under Cygwin, the "mvn" Bash wrapper can't
be successfully invoked.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/abcl/contrib/abcl-asdf/maven-embedder.lisp

    r14168 r14169  
    4242  "Stream to send output from the Maven Aether subsystem to, or NIL to muffle output")
    4343
    44 (defvar *mavens* '("/opt/local/bin/mvn3" "mvn3" "mvn" "mvn3.bat" "mvn.bat")
     44(defparameter *mavens*
     45  (if (find :windows *features*)
     46      '("mvn.bat" "mvn3.bat")
     47      '("/opt/local/bin/mvn3" "mvn3" "mvn"))
    4548  "Locations to search for the Maven executable.")
    4649
Note: See TracChangeset for help on using the changeset viewer.