Clément Lassieur writes: > * gnu/packages/linux.scm (cpuid): New variable. [...] > + #:phases (modify-phases %standard-phases > + (delete 'configure) > + (add-before 'install 'fix-makefile > + (lambda* (#:key outputs #:allow-other-keys) > + (substitute* "Makefile" > + (("\\$\\(BUILDROOT\\)/usr") (assoc-ref outputs "out"))) > + (substitute* "Makefile" > + (("-m 444") "-m 644")) Why is this necessary? Perhaps you can add a comment? LGTM otherwise.