Hello Efraim, On 04/09/17 05:41, Efraim Flashner wrote: > On Sat, Apr 08, 2017 at 05:06:57PM +0300, manolis...@gmail.com wrote: >> From: Manolis Ragkousis <manolis...@gmail.com> >> >> + (modify-phases %standard-phases >> + (add-before 'build 'pre-build >> + (lambda _ >> + ;; Don't change the ownership of any file at this >> time. >> + (substitute* "daemons/Makefile" >> + (("-o root -m 4755") "")) >> + (substitute* "utils/Makefile" >> + (("-o root -m 4755") "")) >> + #t))) > > These substitute* lines could be written as: > (substitute* '("daemons/Makefile" "utils/Makefile") > (("-o root -m 4775") "")) >
Yes you are right. I will fix it and push to master. :) Manolis