Changeset 14169
- Timestamp:
- 10/08/12 18:06:55 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/abcl-asdf/maven-embedder.lisp
r14168 r14169 42 42 "Stream to send output from the Maven Aether subsystem to, or NIL to muffle output") 43 43 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")) 45 48 "Locations to search for the Maven executable.") 46 49
Note: See TracChangeset
for help on using the changeset viewer.