sionescu / iolib

Common Lisp I/O library
http://common-lisp.net/project/iolib/
MIT License
141 stars 31 forks source link

ecl/grovel: when adding c::*cc-flags* split the sequence #32

Closed dkochmanski closed 8 years ago

dkochmanski commented 8 years ago

c::cc-flags is a string and adding it as-is caused grovel invocation of g++ to break (ie " -Dxyz -D3" was treated as one argument).

Commit adds dependency on split-sequence and makes use of it in an appropriate place.

sionescu commented 8 years ago

Thank you.