On Thu, Feb 11, 2016 at 09:15:34AM +0100, Pjotr Prins wrote: > > > + (build-system gnu-build-system) > > > + (arguments > > > + `(#:configure-flags '("--enable-pam") > > > + #:phases > > > + (modify-phases %standard-phases > > > + (add-before > > > + 'configure 'rewrite-usr-bin > > > + (lambda* (#:key inputs #:allow-other-keys) > > > + (substitute* "./doc/html/shtml2html.py" > > > + (("#!/usr/bin/env python") > > > + (string-append "#!" (which "python3")))) > > > > Is this shebang not handled by the patch-shebangs phase? > > I added it because the build failed. I'll try again.
Now I remember. The python3 package does not have python in the path. So I patch it with python3. Pj.