make 'ros build' a bit verbose when with -v.

This commit is contained in:
SANO Masatoshi 2017-09-05 21:24:42 +09:00
parent 4dea24d3f8
commit 9993015b04

View file

@ -20,7 +20,8 @@
for line = (read-line in)
when (ignore-errors (string= line "exec" :end1 4))
do (setf opts (parse-argv line))))
(roswell:roswell `(,opts "-L" ,(or (ros:opt "*lisp")
(ros:opt "default.lisp"))
"dump" ,@(rest argv) "executable" ,(first argv))
(roswell:roswell `(,@(when (roswell:verbose) '("-v"))
,opts "-L" ,(or (ros:opt "*lisp")
(ros:opt "default.lisp"))
"dump" ,@(rest argv) "executable" ,(first argv))
:interactive nil)))