On Wed, Feb 03, 2016 at 07:08:32PM +0100, [email protected] wrote: > '(#:phases (modify-phases %standard-phases > + ; FIXME. this phase is still needed but fails. I dont > + ; understand why. It works fine when done manually in an > + ; environment. > (add-before 'configure 'bootstrap > (lambda _ > - (system* "autoreconf" "-vfi")))))) > + (system* "autoreconf" "-i")
The problem is here. First of all, there was no need to drop the options "v" and "f". But the real problem comes from dropping the parentheses. So now what follows is part of the "lambda" function: > + ; FIXME. test_fd_passing fail. > + #:tests? #f))))) And it ends with "#f", so the return value of the function is false, and the phase fails. I tried closing more parentheses, and then the build passes, but the tests still fail. This would need to be investigated more. Andreas
